Windows NT KAMIDAKI 10.0 build 19045 (Windows 10) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.3.9
Server IP : 192.168.3.16 & Your IP : 216.73.216.140
Domains :
Cant Read [ /etc/named.conf ]
User : SISTEMA
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
C: /
xampp /
FileZillaFTP /
source /
hash_algorithms /
Delete
Unzip
Name
Size
Permission
Date
Action
int64.c
3.58
KB
-rw-rw-rw-
2012-04-16 19:30
int64.h
650
B
-rw-rw-rw-
2012-04-16 19:30
sshmd5.c
10.33
KB
-rw-rw-rw-
2012-04-16 19:30
sshsh512.c
12.12
KB
-rw-rw-rw-
2012-04-16 19:30
sshsha.c
10.09
KB
-rw-rw-rw-
2012-04-16 19:30
Save
Rename
/* * Header for int64.c. */ #ifndef PUTTY_INT64_H #define PUTTY_INT64_H typedef struct { unsigned long hi, lo; } uint64; uint64 uint64_div10(uint64 x, int *remainder); void uint64_decimal(uint64 x, char *buffer); uint64 uint64_make(unsigned long hi, unsigned long lo); uint64 uint64_add(uint64 x, uint64 y); uint64 uint64_add32(uint64 x, unsigned long y); int uint64_compare(uint64 x, uint64 y); uint64 uint64_subtract(uint64 x, uint64 y); double uint64_to_double(uint64 x); uint64 uint64_shift_right(uint64 x, int shift); uint64 uint64_shift_left(uint64 x, int shift); uint64 uint64_from_decimal(char *str); #endif