G-Stress Posted December 12, 2007 Share Posted December 12, 2007 Ok guys, something I'm currently working on. Upon autorun I am trying to have my usb key launch a video file, .wmv or .avi then execute the payload. I'm sure it can't be too hard I finished the video but haven't tried launching yet I will tonight. I figured I'd ask in case others might find it interesting as well. I'm looking for comments, suggestions on what you guys think would be the best approach. I'm sure I can set it to autorun video.wmv and in XP/Vista it will open in whatever default video player the user has set, but I was wondering... I think I saw a post or someone mention somewhere portable VLC player? My idea now is to install portable VLC player to my usb key and have it autorun my video file via portable VLC. Now I haven't looked yet, but I'm sure it could be easily done in a .bat using the path to portable VLC install with command line options? I'm on lunch now I'm gonna give it a shot when I get home tonight, just wanted to open this for suggestions. Quote Link to comment Share on other sites More sharing options...
excid3 Posted December 12, 2007 Share Posted December 12, 2007 Yeah you should be able to pass the video file to VLC using command line. May I ask why you want it to launch a video file though? Quote Link to comment Share on other sites More sharing options...
G-Stress Posted December 12, 2007 Author Share Posted December 12, 2007 Well what I would really like to do, is my payload kinda like a game with random trivia that goes out to a web server to switch trivia and if you get it right goto safety if you get it wrong infect. So I'm starting out creating video file's with random trivia would like to create some sort of animated video/image with the trivia though. Yea I figured It'd be that easy to pass it to VLC and I was able to figure it out quickly: [vlc -f video.wmv] works perfectly for what I'm wanting:D Quote Link to comment Share on other sites More sharing options...
excid3 Posted December 13, 2007 Share Posted December 13, 2007 Sounds like fun...be sure to post your payload when you get it finished. I'd love to test it out!Ā Quote Link to comment Share on other sites More sharing options...
G-Stress Posted December 13, 2007 Author Share Posted December 13, 2007 Will do :D Quote Link to comment Share on other sites More sharing options...
G-Stress Posted December 13, 2007 Author Share Posted December 13, 2007 Oh yea one thing I forgot to ask, say I want to use an interactive image instead of a video file. I've seen alot of images lately via myspace and around the web that move. What would be the best way to create such an image I'm not exactly sure what to search for on that one? I assume their made with Flash? Quote Link to comment Share on other sites More sharing options...
excid3 Posted December 13, 2007 Share Posted December 13, 2007 What exactly do you want it to do? If you want something interactive it will probably take some programming to work, otherwise if its just an animated gif that is fairly easy to display... Quote Link to comment Share on other sites More sharing options...
G-Stress Posted December 13, 2007 Author Share Posted December 13, 2007 For example SomeoneElse, his avatar has some blue beems that rotate and I thought he or someone earlier today or yesterday had an avatar of a womans boobs that bounced. Something like that. Quote Link to comment Share on other sites More sharing options...
excid3 Posted December 13, 2007 Share Posted December 13, 2007 Those are probably just animated gif's. All you need to do is display them on the screen...as for how to do that im not really sure, other than using NSIS. Quote Link to comment Share on other sites More sharing options...
G-Stress Posted December 13, 2007 Author Share Posted December 13, 2007 Ahh... I see... I'll do some poking around I'm sure it can't be too hard to do. I've ran into my first problem. I got the video auto runningĀ full screen just like im wanting, but when it's over vlc stays open. I'm not sure why it doesn't close. @echo off IF EXSIT C:safety.txt GOTO END call vlc.exe -f --disabled-screensaver video.wmv taskkill /F /IM vlc.exe :END echo random message ping localost -n 4 >nul exit Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.