Home Forum Files GoToMyPc
Home :                   Sitemap Check out: [Philosophy of knowledge] [Online Meeting Product] [Playstation 2 programming emulation] [Anonymous proxy list] [ PhilosophyArchive] [Netzero fast] [WebEx PC Info]

Security
Linux
> Windows
Programming
Hardware
Applications
Web development
Web Conferencing

Philosophy           
Maths
Physics
Music
Politics
Movies
Games
Self defense
Vegetarian recipes
Art and crafts
Access Your PC from Anywhere - Free Download
You’re invited to try a new remote-access telework solution that CNET says could “change your life.” Gain the freedom to work from anywhere using GoToMyPC. It’s the fast, easy and secure way to access and control your PC via any Web browser — anytime, anywhere. GoToMyPC is perfect for teleworkers, travelers and after-hours access. Installs in 2 minutes – Get Your Free Download Now!
Note: This site is a mirror and the content is user editable. Any problems with the content please email webmaster at rustyspigot dot com.

how to hack linux


The most common linux attacks


By: the@womble.co.uk
Flames: If you think this is crap, you're probably right. Sue me
Distribution:Post/ email to anyone as long as the entire file is intact
Site: www.groovyweb.cjb.net, www.axion-network.net for more

Related:

  • Linux security know your enemy 3
  • Linux security know your enemy 2
  • Linux security know your enemy
  • Linux firewall Iptables Basics NHF
  • Introduction to linux

    This page aims to help newbies know how to stop attacks.
    Contained information is very simple
    Also check:
    http://groups.yahoo.com/group/linux-hack
    http://www.linux-hacker.net
    http://www.linuxapps.com/
    How to stop hackers getting your passwords:
    On most unix systems passwords are stored, encrypted, in the file etc/passwd. The command cat can be used to idsplay the encrypted passwords:
    cat etc/passwd
    But the encryption has long been crackable. A tool called John has long been availble. It runs in dos, and you can crack the average unix password in a couple of hours. A password shorter then four letters takes no time at all (make sure no passwords are this long). See the files section [index.cgi?files] for other crackers.
    The way the programs work are by testing lots of passwords. Normally, to save time, a list of possible passwords in a file is used
    !Make sure no users use common passwords that are easily guessed (god, america, slipnot)
    If this doesnt work, the program trys an infinite combination of letters.
    !Make sure no passwords are less than six letters long
    After this security flaw was made widely known, shadowing in unix was enabled. This hides the passwords
    somewhere.Unfortunately, you can normally find the passwords using the commands "locate shadow"
    You can see if the passwords are shadowed because in etc/passwd there will just be * where passwords should be.
    !Exploits are very commonly used
    Some hacker finds a bug in your firewall, posts it on the internet, teenagers find the bug and exploit it on your computer. Check bug tracking sites often.
    More soon.

    Also you dont have any of the default user/password combinations:
    LOGIN PASSWORD
    -----------------
    root root
    sys sys
    daemon daemon
    uucp uucp
    tty tty
    test test
    unix unix
    bin bin
    adm adm
    admin admin
    who who
    learn learn
    uuhost uuhost
    nuucp nuucp
    finger finger
    games games
    user user
    Check http://blacksun.box.sk/format.php3?file=lecture1.html for ways severs are hacked

    Axion: Also try to get a copy of some books such as Maximum Security or Hacking Exposed.