نقل قول:
نوشته شده توسط K053_LSH_KV90
shahabamo جان تو صفحه هاي قبلي يه وارگيم بود كه هكتور جون معرفي كرده بود
از اين وار گيم ها خيلي زياد هست البته درجه بندي شده هستند
اين وار گيم ها زياد به آدم كمك نمي كنه فقط براي وقت گذراني خوبه
------------------------------------------
هك كردن سايت ها زياد حال نميده يعني ديفيس كني كه چي بشه ؟؟
من كه ديفيس نمي كنم تا بحث كل كل يا انتقام پيش بياد همون نوذ به سايت ها من رو ارضا مي كنه
باگ پيدا كردن حالش بيشتره [مخصوصا ديتابيس دانلود كردن]
سلام
من هم موافقم ولی دیفیس کردن هم دنیایی داره
--------------------------------------------------------
این مقاله رو پیدا کردم اسمش هست
restore your root password
شاید بشه به عنوان نفوذ ازش استفاده کرد :biggrin:
[HTML]INTRODUCTION
This tutorial is made to help you to restore your root password if you forgot it.
So use it only for your own system, or if you have an permission to do it.
I don't take any responsibility of any possible damage.
-1 Breaking in...
.a
First and easiest way is to enter to Bash using installed kernel image with parameter:
init=/bin/bash
.b
Also you can send parameter 'single' while loading kernel to login as root.
.c
If '/etc/lilo.conf' is protected with 'restricted' and 'password' we have to boot other image: floppy, liveCD, Usb drive...
-2 Access to system
.a
If you used kernel parameter to log in (way 1a or 1b) we need to mount manually our filesystem in R/W mode:
# mount -n -o remount,rw /
# mount /proc
# mount -a -t nonfs
.b
If you used other image, now we mount the filesystem:
# mount -t FILESYSTEM DEVICE /mnt
Change FILESYSTEM to your '/' filesystem (ext3, reiser...)
Change DEVICE to device where '/' is located (/dev/hda1, /dev/hdb3...).
Remember that if you use other image you can't run passwd.
So we have to change it manually (3b).
-3 Change root password
.a
If you could access with parameter we have to run 'passwd' and change the password.
And now.. mission completed...
.b We can also change it manually by editing file (If you used other image use /mnt/etc/...):
# nano /etc/shadow
Use any text editor to do this (nano, vim...).
If the system doesn't use shadow you need to use file:
# nano /etc/passwd
Now we should have the encrypted root password in the first line (example):
root:$1$NyReZF45$KoMW4EAOrCc/atu4WrsTe:13948:0:99999:7:::
Remove from the first ':' to next ':' (example):
root::13948:0:99999:7:::
Finally save the file.
DONE! Now next time you log in as root in the system it will ask for new root password.[/HTML]