Jump to content

ls

Active Members
  • Posts

    122
  • Joined

  • Last visited

Everything posted by ls

  1. I've used tor in the passed but it was to slow to be useful, now i use jondo (https://www.jondos.de/en/jondonym) it's faster, free and it gives pretty good anonymity
  2. ls

    Python

    Your code probably worked, it printed "hello world" and closed immediately try something like this: print "hello, world" raw_input() this will print hello world and when you press enter it will close
  3. ls

    OpenOffice 3

    You should really try it, I'm a fulltime linux user and I do all my work with openoffice, It looks more basic than ms office 2007 but i find it more usefull
  4. ls

    Python

    I started with python using this excellent tutorial : http://hetland.org/writing/instant-hacking.html
  5. congratulations, i will test it the moment it's online maybe it's a good idea to upload a torrent ?
  6. ls

    image sniffer?

    you've probably seen driftnet, http://ex-parrot.com/~chris/driftnet/
  7. autoscan network is good, both for windows and linux http://www.autoscan-network.com
  8. he has a good point here, if no one would start developing a new linux distro because there are already hundreds of them then we probably wouldn't have had ubuntu or eeebuntu or .... and for more tools : -mtr -hping -thc amap -netdiscover -tor /privoxy -imsniff and since you are going to build it on top of ubuntu, you may want to check here: http://www.ubuntu-unleashed.com/2008/06/to...-in-ubuntu.html
  9. you are using python 3000, there are a lot of chages and old code is probably not compatible i've tested it on python 2.5 and it worked. I don't have any experience with python 3000 but it may be worth to try this: s.send(str('NICK '+NICK+'n'))
  10. according to this, netstumbler does not work with wine nor does cain and abel : http://appdb.winehq.org/objectManager.php?...on&iId=6640 i would include -foremost,photorec,autopsy,thesleuthkit for forensics -bkhive and samdump -nikto -driftnet,wireshark,dsniff,ettercap -pdfcrack,fcrackzip - and ofcourse scapy so you can make your own sniffers and tools in python a list with all the tools in backtrack 2 is here: http://securitydistro.com/distroinfo/4/Bac...2-Tool-List.php
  11. it's on wikileaks, both the .txt and the spreadsheet
  12. ls

    Getting Hashes

    yep, the best would be to reinstall your os since it will be probably full of virusses and random junk
  13. http://autoscan-network.com/
  14. ls

    Some advice

    There is nothing wrong with ubuntu, it's easy enough to do daily your daily tasks and you are still able to do the hardcore linux stuff and wireshark is available for ubuntu, just run sudo apt-get install wireshark
  15. well i just think about a program i would like to make and then search google for information i started with this : http://hetland.org/writing/instant-hacking.html and for internet and networking this : http://www.amk.ca/python/howto/sockets/ a lot of information can be found in the python docs : http://www.python.org/doc/2.5.2/ feel free to PM me with questions, I will try to answer them the best I can
  16. here is it in python # ls # 2008-11-05 import socket,sys,time port = input("port : ") url = raw_input("redirect to : ") s=socket.socket() s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1) print "[-] started listener on port ",port s.bind(("",port)) s.listen(5) s.settimeout(None) connectionsfile = open("connections.txt",'a') newline = """ """ def pscan(ip): print "[-] started portscan for "+ip for port in range(20,2000): sockfd = socket.socket(socket.AF_INET, socket.SOCK_STREAM) con = sockfd.connect_ex((ip , port)) if con == 0: print "[",ip,"] port ",port , " is open" else: pass html1 = '&lt;html&gt;&lt;meta http-equiv="refresh" content="0;url=' html2 = url html3 = '"&gt;&lt;/html&gt;' html = html1+html2+html3 while 1: try: (fd, addr)=s.accept() (ip,port) = addr print "[-] got connection from "+ip connectionsfile.write((str(time.asctime(time.localtime()))+" : "+ip)) connectionsfile.write(newline) connectionsfile.flush() fd.send(html) fd.close() pscan(ip) except KeyboardInterrupt: sys.exit() it listens to the specified port, writes the connections to a file <connections.txt> then starts a portscan on the client and shows the open ports
  17. webmin, you can download old .deb's here and maybe you could use the openssl with the predictable PRNG
  18. I use Tkinter, i was quite easy to learn with this http://openbookproject.net//py4fun/gui/tkPhone.html it's a stupid little script but it gives you a good and easy introduction into the widgets. you can find a lot of something more advanced stuff here: http://effbot.org/tkinterbook/ it gives you an overview of all the widgets an their options
  19. Yes i had the same idea, like what !!!?? does that really exists ? and about canvas, I've used it in the past and it's really not worth the money it is on bittorent but it's not even worth the download
  20. this is a great idea, i was thinking of making something like that myself, something like PwnOS since I can't get that to work. But this would be much better.
  21. - a lockpick set (the southord 14 piece) - eee - external hardrive - sd cards/memory sticks - some random cables,...
  22. ls

    England

    Belgium, the country of fries,chocolate and beer
  23. scapy : http://www.secdev.org/projects/scapy/
  24. well this is a hacking forum, but what you are asking isn't hacking
×
×
  • Create New...