Jump to content

ls

Active Members
  • Posts

    122
  • Joined

  • Last visited

Posts posted by ls

  1. so i was going to this site: http://ezpicking.com/forum/index.php

    it's a small lockpicking forum an what did i see ? It's defaced

    So i just want to say how lame defacing is, OK they should spend more time securing their website

    but that doesn't give you the right to do something this stupid.

    I mean, what's the point ? if it would be a site with child pornography i would understand it

    but this is just the work of people with to much spare time.

    screenshotrz1.th.pngthpix.gif

    what's your opinion on defacing ?

  2. 1) Gnome

    2) /

    3) Nautilus

    4) Firefox

    5) -Python with scapy

    -Nmap

    -tcpdump

    -wireshark

    -dsniff

    -thc-hydra

    -netcat

    -mtr

    -google!!!!!

    6) OpenOffice

    7) I like to keep distros as small as possible, i will install the programs i want myself.

    8) 3

    9) vlc

    10) tuxkart :)

  3. well first you will need to write a file with the subdomains to search for like this:

    forums
    intranet
    sales
    video
    ....

    then paste this code into another file called subfind.py

    import urllib2,sys
    site = sys.argv[1]
    subs = sys.argv[2]
    subs = open(subs,'r').readlines()
    for sub in subs:
    	sub = sub.replace("\n","")
    	site2 = "http://"+sub+"."+site
    	try:
    		urllib2.urlopen(site2).readlines()
    		print site2
    	except:
    		pass
    print "done"

    and save it

    now run it from the commandline like this

    python subfind.py google.com <the file with the subdomains>

    if a valid subdomain is found it will print it out

  4. If you still have the files and want to keep them after DBANning like Sparda Said, why not try this. Create a TrueCrypt Virtual Drive thats just a bit Bigger than the download, and then create a secret volume in it. Move the Game into the Hidden Volume, and then, fill the normal Volume with Pron. This might work because if it moves to court, and they need to do computer forensics on your computer to prove you downloaded it, and they discover its a TrueCrypt Volume, just give them the normal Volume Password and when they open it and see Pron, they will understand why you used TrueCrypt in the First Place and probably not take it any further with the volume.

    or create a truecrypt volume called ubuntu-8.04.iso or something like that , they will just see a normal cd/dvd image and will probably no try to open it , make sure the file is about the size of a legitimate iso

  5. to find al the links on different websites to a site you can use google like :

    link:hak5.org

    if you need to find al the links on a website you will need to search the source to href=site.com

    and to find things like wiki.hak5.org you need to write a script that tries to open different subdomains

    like this python script:

    import urllib2
    subs = ["w","wi","wik","wiki"]
    for sub in subs:
        site ="http://"+sub+".hak5.org"
        try:
              urllib2.urlopen(site).readlines()
              print site
        except:
            pass

    is this what you was asking for ?

  6. I've just found this , it's pretty cool

    -Tiger Team is the name of an American television show that airs on TruTV (formerly CourtTV).

    The show follows a civilian tiger team composed of Chris Nickerson, Luke McOmie, and Ryan Jones, which is hired to infiltrate organizations with the objective of testing their weaknesses to electronic, psychological, tactical, and physical threats. Attacks executed on organizations in this television show include social engineering, wired and wireless hacking, and physically breaking into buildings.

    The television show's first two episodes aired Tuesday, December 25, 2007 at 11:00 pm ET and 11:30 pm ET. The first episode is available on TruTV's website in streaming flash format[1]. The first two episodes were re-aired, back-to-back, on June 16th, 2008.- wikipedia

    to bad there are only two episodes

    http://en.wikipedia.org/wiki/Tiger_Team_(TV_series)

  7. well this is true , but i wouldn't say that breaking into people systems makes you a cracker , you can also be an "ethical hacker " or a "pentester" and break into peoples systems with their permission

    and i think most people here aren't crackers but just geeks and programmers , my view of hackers

×
×
  • Create New...