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.47
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 /
flex /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
fastwc
[ DIR ]
drwxr-xr-x
manual
[ DIR ]
drwxr-xr-x
Makefile.am
1012
B
-rw-r--r--
README
656
B
-rw-r--r--
debflex.awk
2.73
KB
-rw-r--r--
testxxLexer.l
860
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : testxxLexer.l
// An example of using the flex C++ scanner class. %option C++ noyywrap %{ int mylineno = 0; %} string \"[^\n"]+\" ws [ \t]+ alpha [A-Za-z] dig [0-9] name ({alpha}|{dig}|\$)({alpha}|{dig}|\_|\.|\-|\/|\$)* num1 [-+]?{dig}+\.?([eE][-+]?{dig}+)? num2 [-+]?{dig}*\.{dig}+([eE][-+]?{dig}+)? number {num1}|{num2} %% {ws} /* skip blanks and tabs */ "/*" { int c; while((c = yyinput()) != 0) { if(c == '\n') ++mylineno; else if(c == '*') { if((c = yyinput()) == '/') break; else unput(c); } } } {number} std::cout << "number " << YYText() << '\n'; \n mylineno++; {name} std::cout << "name " << YYText() << '\n'; {string} std::cout << "string " << YYText() << '\n'; %% int main( int /* argc */, char** /* argv */ ) { FlexLexer* lexer = new yyFlexLexer; while(lexer->yylex() != 0) ; return 0; }
Close