Jump to content

Blue Dragon

Active Members
  • Posts

    77
  • Joined

  • Last visited

Everything posted by Blue Dragon

  1. Thx for the answer. Well, I'm on the same network, so all I would have to do is aprspoof both the victim at 192.168.0.134 and the proxy at 192.168.0.12 into beliving I was the other one. victim: 192.168.0.134 (set up to use proxy 192.168.0.12:3128) proxy: 192.168.0.12 attacker: 192.168.0.150 running squid-proxy+upside-down-ternet script As I said, when I set up victim to use 192.168.0.150:3128 as proxy, everything works.
  2. Anyone? As I said, it all works perfectly when the "victim" connects voluntarily to the proxy at 192.160.0.150:3128 What if the browser on the "victim" was already set up to use a proxy-server. Like in this case, 192.168.0.12:3128 How can I spoof the network so that the browser connects to 192.168.0.150 instead of 192.168.0.12 ? I've tried arpspoof (set it up in two terminals, one for Victim-Gateway(proxy); one for Gateway(proxy)-Victim as discriped here: http://su2.info/doc/arpspoof.php), but it didn't work. The "victim" could connect to the internet and the pictures weren't upside-down! I've also tried ettercap without the "-P dns" part as this is what seems to slow things down. Didn't work either, images all right-side-up. Do you think that doing this all in a VM could be an issue? I have 2 VMs running on a Core i7 Win7 box, so CPU shouldn't be a problem. Maybe the network card is to slow or sth? wild guess, yeah...
  3. Why not copy everything? I mean, if your're running rsync, you can get everything on the first run and then only copy the files that changes every day.
  4. Well, try rsync in combination with ssh. Mount the remote server's files system using sshfs, then use rsync to copy the files to your local server. Put it all into a nice bash-script that you can run over night using cron.
  5. Hi, I've been playing around with ettercap in a VM a little bit. I used sudo ettercap -T -q -P dns_spoof -i eth0 -M ARP /192.168.0.134/ // with 192.168.0.134 being a second VM ("victim"). The etter.dns has nothing but * A 192.168.0.150 in it with 192.168.0.150 being my first VM ("attacker") that is running ettercap. Basically I wanted to test the "upside-down-ternet"-prank on my test network. It worked quite well and actually turned the images around like it should do. However, I've noticed one problem: When you go to a new site on the "victim", this site takes very long to load. Is sometimes takes up to a minute for the site to respond, but sure enough, in the end it loads and the images are upside down! The strange this is, that once flickr.com for example is loaded, browsing the site is very snappy and all the images load as fast as always and they're all upside down! So it seems that the initial dns-lookup/ping takes very long, but once a connection is made, everything is as fast as it should be. I also tried speedtest.net which gave me 27Mbit Downspeed (normally I only get about 6Mbit so I guess it messured the LAN speed) and 0.5 up (normal). Then I tried pingtest.net and it gave me an error saying that it couldn't connect to the server because it timed out. Then I tried pinning google from the "victim" while ettercap was running the dns-spoof: Notice that it took 80183ms to finish 5 packets! Without the dns-spoof, it only took 4003ms! However, each individual packet went over the wire in 0.2ms (LAN-Speed) compared to 68ms. One other thing: When I set up the victims Browser to use 192.168.0.150:3128 as a proxy and didn't use ettercap at all, everything works perfectly! All the images are upside-down and opening a new site is very fast. So there really seems to be something wrong with my dns-spoofing. I'm running "ettercap NG-0.7.3" on a Linux-Mint 8 VM in VMWare Player 3.0 with a bridged network card. I have ip_forward activated on my "attacker"-box and as I said, everything works when I let the "victim" surf through 192.168.0.150:3128 as a proxy. I would really appreciate some help! ;)
  6. But most of the time it rather looks like this:
  7. I have a U3 drive and managed to boot Backtrack 3 just fine when I put it on the Flash-Partition with unetbootin. The Switchblade on the U3-Partition still worked all right afterwards.
  8. Hey guys, I just bought a 16GB Sandisk cruzer 16GB usb flash drive with U3 technology. I downloaded the Leapos Payload v0880 (latest) and the Universal Customizer from Hak5. I then copied the ISO from the U3-Directory of the Leapos-Release to the BIN directory of Universal Customizer and ran the exe. There were no errors and flashing the U3-Partition seemed to go fine. I then copied the files from the "Flash Partition"-Folder to my flash partition on the cruzer. After that I ran Menu.bat and configured the settings for which modules to run ect. All that seemed to work just fine but I can't get the thing to do autorun. I used to have the Leapos on my old flash drive without the U3 and it worked, but with the U3, nothing happens when I plug it into my computer. Also running it manually but starting the Menu.bat and selecting option "2. Run USB Pocket Knife" gives me an error from Windows Script Host: Script: h:\SYSTEM\GO.VBS Line: 16 Error: Can't find the file Code: 80070002 The VBS-Script is definitely in h:\SYSTEM\GO.VBS (the U3-Partition) and line 16 in that scipt calls Start.Bat also in h:\SYSTEM\START.BAT If objFSO.FileExists(objDrive.DriveLetter & ":\SYSTEM\Start.bat") Then objShell.Run ".\System\Start.bat " & strPath , 0, False End If I noticed that in the VBS-Script it says ".\System\Start.bat" whereas windows explorer shows "\SYSTEM\START.BAT" in capital letters. May the problem already lay here? Also the AUTORUN.INF is written in upper case whereas it was Autorun.inf on my previous non-U3-flashdrive. Running START.BAT manually kind of works. There're still some issues with file paths but this may be due to me using the german version of windows with Firefox and other programs only as Portable Apps so there's no data in C:\Programm Files\*whatever app* Other than that it dumps all the system info/passwords ect just fine. I checked in the registry under HKEY_LOCAL_MACHINE/System/CurrentControlSet/Services/Cdrom. Autorun is set to 1 there. Also HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\Explorer\NoDriveTypeAutorun is set to 0x91 which is the default setting. (http://support.microsoft.com/kb/967715/ + http://communities.sandisk.com/sandisk/boa...essage.id=4070) So Autorun itself should work and does on other CD/flash drives. Usually you can just right click the device in Explorer and select Autorun but this Option is also not there with my U3 drive. So, can anyone point me in the right direction as to why Autorun doesn't work with my U3 Sandisk cruzer? A little help would be much appreciated! ;) *UPDATE* So, I've managed to get the VBS-script to run by changing line 16 to objShell.Run "Start.bat" , 0, False However, autorun still doesn't work. I have a U3 parition with Autorun.inf on the root folder of it [autorun] shellexecute=wscript SYSTEM\go.vbs icon=System\Drive.ico Also, when I right click on the U3 drive, there's no option in the menu to start Autorun as there is with normal CDs and my old flash drive that has the Autorun.inf in its root. Does anybody know how to enable autorun on the U3 partition? I runs perfectly when being started manually with the VBS.
  9. Hey guys, I've been reading a bit on the interwebs about people who managed to install their OS (WindowsXP) onto a Ram Disk which apparently resulted in a very good performance with fast loading apps ect. I know it's pretty easy to load a live CD of knoppix into RAM before booting and having the same advantages (apps pop up instantly ect.) since there's already a simple menu option when booting the liveCD. Now, I'd like to know if something like this is possible with windows. Nowadays you can easily buy 16GB of RAM for a couple of hundred $$$ which would be far enough to hold your XP or even Windows7. The only problem of course is that all the data is lost when you loose power. Well, not all is lost at once but it gets corrupted over time... What I was thinking about is the following: Install Windows on a normal drive and every time you boot, copy the whole system into RAM before booting it up. That way the booting it self would take a little longer, since copying 5-15GB of stuff from a SATA-connection would take something like 5-10 minutes I guess, but once the system is up, your performance would be awesome, wouldn't it? Later, in order to save your settings, installed programs ect., all you'd have to do is copy the system back onto the HDD before shutting down. Would this be possible? I guess one could use a program like dd that just copies all the bits from one partition or even an image file to the RAM-Disk. What do you think? How would you do this? Would you actually see the difference in speed when using the Ram for your OS as opposed to a normal HDD? Has anyone ever done this in this way? What about actually booting from the RAM-Disk? Does it show up as a normal drive in the BIOS or do you have a special boot loader on an additional drive? Looking forward to your suggestions and answers. EDIT: Just found this: http://www.hyperdrive4.com/index.php Hold max 64GB of DDR2 Ram, but costs 400$ for the case alone, plus whatever 64GB of Ram cost. Not cheap, but 175MB/s read, 145MB/s write sounds pretty decent. Edit2: Oh damn, Sparda just found the same thing. However, as I said it's not cheap. And if I already have tons of RAM in my system, can't I just use that?
  10. Hey guys, I was wondering weather it would be possible to inject a video or still frame into a VNC-Connection from the server-side so that it looks like the one being monitored is still working on a spread sheet while in fact he's doing something else. I got this idea from one of many movies where the guys breaking into the bank feed a video of an empty vault to the security-guys while they are actually in the vault stealing the money. Would it be possible to run a VNC-Server that serves a still frame or video-loop via the VNC-Protocoll so that if someone were to connect to my VNC-Server, all he would see is the still frame or video-loop?
  11. However a regular free http proxy from elite-proxy is a lot better for this, I think. With TOR you're routing your traffic through dozens of nodes which causes transfer rates of 10kb/s or less from what I expirienced while trying it. In todays Web 2.0 that's simply not enough for anything on the web. No Video, no Audio, no Pictures (unless you want to wait 2 hours for a few pics to load). So well, the idea behind TOR is good I think and there're certainly some times where it's actually useful. However most of the time it's rather useless because it's just not fast enough to get anything done.
  12. Try metasploit with autopwn. It's kinda skiddy, but works good for fairly unprotected machines. And it's easy to use.
  13. As your're talking 100MB or less, you could also try Dropbox
  14. Yeah; I'd love to see the talk, too. And videotaping it (or I guess HDD-recording with the new HD-Camcoders ;) ) would make it available for everyone to see!
  15. Ubuntusrudio is a software for postproduction, not for editing while your broadcasting/streaming live. Afaik software that can do this is very, very expensive. On Hak5 they use a hardware video mixer which starts around 800$ or so, I think. I'd suggest you head over to revision3.com and watch this episode of the gazette: http://revision3.com/rev3gazette/studioop/ There they show what they used to build their studio, maybe you can get some info on what to buy there.
  16. Wow, this movie looks great! Haven't seen it here in germany yet, though.
  17. I didn't think so when I watched it a few weeks ago. You do know that most of the story about Kevin Mitnick told in the movie is completely wrong, don't you? They made this movie while he was in prison for doing small things like looking at some code inside a company or copying some software (without ever distributing it!). Go watch the movie "Freedom Downtime" by the 2600 Crew to get an other look at the Mitnick-Case and find out how it really went down. The Takedown-people showed the media an image of Mitnick that just wasn't true. As to what hacker movies I like: Enigma is a great one. Just watched it a few days ago and it's very interesting. Ghost in the Sheel is also one of my fav. movies. I generally don't watch anime, but GitS is really great! Sneakers is another one I really like.
  18. I use Banshee and VLC or Totem on Ubuntu and iTunes and VLC on Windows. Haven't skinned the players specifically, but I got rid of the orange Ubuntu theme and now use a combination of MurrinaCobalt and DarkGray'72.
  19. Ubuntu 8.04 with Gnome (MurrinaCobalt-Theme) on a Dual Monitor Setup.
  20. As moonlit said, upgrade to WPA. WEP can be cracked in minutes, WPA is much more secure. Especially if you use a strong keypass with numbers, letters, special characters...
  21. I'd like to buy a UMPC such as the eee or the msi wind (probably the One A440 by the german company One) in a few weeks. I'm pretty sure the standard OS won't be enough, so I was asking myself: Would it make sense to use eeeXubuntu or Ubuntu EEE as they are already optimised for smaller screens, even if I don't use an eeepc? Or should I just go with the regular Ubuntu/XUbuntu?
  22. Hey guys, I just watched "Insecurity", Australian-made independently-funded feature film and I must say I really loved it and wanted to share it with you! It's released under Creative Common and can be downloaded via BitTorrent on the website. When offered four thousand dollars to break into a computer network, Leon(Peter Love) and Greg (Kurtis Wakefield) aren't concerned with something as petty as morality. The only real questions are what complications can arise from hacking into a small home business, what's wrong with the twenty year old daughter Madison (Zoe Tarling)... ... and what should Greg do when his friend can't stop watching the girl on her own webcam - and without her knowledge. I especially liked the ending, so definitely watch the whole 1:15, it's really worth it! If you already saw it, what do you think about it? Greetings form Germany, Blue Dragon
×
×
  • Create New...