mirror of
https://github.com/fuzzdb-project/fuzzdb.git
synced 2024-11-21 18:43:02 +00:00
added Null representations for double encoding, format string %* and octal representations of localhost
This commit is contained in:
parent
ecb0850538
commit
e682447cb5
4 changed files with 29 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
*.DS_Store
|
|
@ -54,3 +54,11 @@ u"\u0000"
|
||||||
%FE%80%80%80%80%80%80
|
%FE%80%80%80%80%80%80
|
||||||
|
|
||||||
<EFBFBD>
|
<EFBFBD>
|
||||||
|
%2500
|
||||||
|
%252500
|
||||||
|
%25252500
|
||||||
|
%25%30%30
|
||||||
|
\x%30%30
|
||||||
|
%%30%30
|
||||||
|
%25%2530%2530
|
||||||
|
|
||||||
|
|
|
@ -55,3 +55,14 @@ ppppp%x
|
||||||
ppppp%n
|
ppppp%n
|
||||||
%@
|
%@
|
||||||
%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@
|
%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@
|
||||||
|
%*
|
||||||
|
%*p
|
||||||
|
%*x
|
||||||
|
%*s
|
||||||
|
%*S
|
||||||
|
%*$*
|
||||||
|
%*$*p
|
||||||
|
%*$*x
|
||||||
|
%*$*s
|
||||||
|
%*$*S
|
||||||
|
|
||||||
|
|
|
@ -11,3 +11,12 @@
|
||||||
7F000001
|
7F000001
|
||||||
7F000002
|
7F000002
|
||||||
localhost
|
localhost
|
||||||
|
0177.1
|
||||||
|
0177.2
|
||||||
|
0177.0.1
|
||||||
|
0177.0.2
|
||||||
|
017700000001
|
||||||
|
017700000002
|
||||||
|
0x7F000001
|
||||||
|
0x7F000002
|
||||||
|
0X07f.0.0.1
|
||||||
|
|
Loading…
Reference in a new issue