Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Duplicate (mixed case) file in Fuzzing Directory #284

Closed
ChrisMcKee opened this issue Apr 3, 2019 · 9 comments
Closed

Duplicate (mixed case) file in Fuzzing Directory #284

ChrisMcKee opened this issue Apr 3, 2019 · 9 comments
Assignees
Labels
bug Bug

Comments

@ChrisMcKee
Copy link

'Fuzzing/UserAgents-IE.txt'
'Fuzzing/useragents-ie.txt'

One needs blowing away.

@g0tmi1k g0tmi1k self-assigned this Apr 3, 2019
@g0tmi1k g0tmi1k added the bug Bug label Apr 3, 2019
@g0tmi1k
Copy link
Collaborator

g0tmi1k commented Apr 3, 2019

@ChrisMcKee I'm not seeing this.
Are you using the latest version?

https://github.com/danielmiessler/SecLists/tree/master/Fuzzing

$ ls -1 ./Fuzzing/ | grep -i user
UserAgents-ie.txt
UserAgents.fuzz.txt
user-agents
$

@ChrisMcKee
Copy link
Author

ChrisMcKee commented Apr 3, 2019

image

@g0tmi1k
Copy link
Collaborator

g0tmi1k commented Apr 4, 2019

@ChrisMcKee
Your screenshot has different filenames to whats in the top/first comment.

@g0tmi1k
Copy link
Collaborator

g0tmi1k commented Apr 4, 2019

Their contents is different too.
This isn't a duplicate file.

$ wc -l Fuzzing/UserAgents*                                                                                                                                   (upstream-master)
   245 Fuzzing/UserAgents-ie.txt
  2454 Fuzzing/UserAgents.fuzz.txt
  2699 total
$

@g0tmi1k g0tmi1k closed this as completed Apr 4, 2019
@g0tmi1k g0tmi1k added n/a Not Applicable and removed bug Bug labels Apr 4, 2019
@ChrisMcKee
Copy link
Author

@g0tmi1k you closed it but there are still two files with the same name and different casing.
.fuzz was only highlighted because i typed userage in the browsers find control; I wasn't saying it was the same thing.

image

That better^

The content may not be identical but the file naming is; which is what the issue was for.

@0x6773
Copy link

0x6773 commented Apr 9, 2019

I can confirm, there are two duplicate files inside Fuzzing

~/SecLists/Fuzzing master $ git rev-parse HEAD
aca3a1bb5cb8fe52bffb0cfe5aed260cf3aa0870 # current master
~/SecLists/Fuzzing master $ wc * | grep -i user                                                                                                                                                                                           
wc: Polyglots: Is a directory
wc: user-agents: Is a directory
       0        0        0 user-agents
    2454     8756   110375 UserAgents.fuzz.txt
     245     2752    20678 useragents-ie.txt # this 
     245     2752    20678 UserAgents-IE.txt # and this
~/SecLists/Fuzzing master $ diff useragents-ie.txt UserAgents-IE.txt
 # no diff
~/SecLists/Fuzzing master $

@g0tmi1k
Copy link
Collaborator

g0tmi1k commented Apr 9, 2019

[seclists]$ git rev-parse HEAD
aca3a1bb5cb8fe52bffb0cfe5aed260cf3aa0870
[seclists]$
[seclists]$ cd Fuzzing/
[Fuzzing]$
[Fuzzing]$ wc * | grep -i user
wc: Polyglots: Is a directory
     245     2752    20678 UserAgents-ie.txt
    2454     8756   110375 UserAgents.fuzz.txt
wc: user-agents: Is a directory
       0        0        0 user-agents
[Fuzzing]$ 

However...

[tmp]$ curl -I https://raw.githubusercontent.com/danielmiessler/SecLists/master/Fuzzing/useragents-ie.txt
HTTP/1.1 200 OK
...SNIP...
Content-Length: 20678
...SNIP...
Expires: Tue, 09 Apr 2019 22:12:19 GMT
Source-Age: 20

[tmp]$
[tmp]$ curl -I https://raw.githubusercontent.com/danielmiessler/SecLists/master/Fuzzing/UserAgents-IE.txt
HTTP/1.1 200 OK
...SNIP...
Content-Length: 20678
...SNIP...
Expires: Tue, 09 Apr 2019 22:12:22 GMT
Source-Age: 44

[tmp]$

So I've got a mistake locally with my local (and global) config.
Sorry @ChrisMcKee and thanks for the input @0x6773 .
I stand correct, I messed up =)

I'll dig into it tomorrow.

@g0tmi1k g0tmi1k reopened this Apr 9, 2019
@g0tmi1k
Copy link
Collaborator

g0tmi1k commented Apr 9, 2019

Well that was simple enough...

[Fuzzing]$ git config core.ignorecase                                                                                                                          
true
[Fuzzing]$
[Fuzzing]$ git config core.ignorecase false                                                                                                                    
[Fuzzing]$                                                                                                                                               
[Fuzzing]$ git status                                                                                                                                    
On branch upstream-master
Your branch is up to date with 'upstream/master'.

Untracked files:
  (use "git add <file>..." to include in what will be committed)

	FormatString-Jhaddix.txt
	HTML5sec-Injections-Jhaddix.txt
	SSI-Injection-Jhaddix.txt
	URI-hex.txt
	Unicode.txt
	UserAgents-ie.txt
	XSS-Bypass-Strings-BruteLogic.txt
	XSS-With-Context-Jhaddix.txt
	command-injection-commix.txt
	db2enumeration.fuzzdb.txt

nothing added to commit but untracked files present (use "git add" to track)
[Fuzzing]$

@g0tmi1k g0tmi1k added bug Bug and removed n/a Not Applicable labels Apr 9, 2019
@g0tmi1k
Copy link
Collaborator

g0tmi1k commented Apr 10, 2019

pi@raspberrypi:~/SecLists $ find . -print0 | sort -z | uniq -diz
pi@raspberrypi:~/SecLists $

Should be good now!

Thanks and sorry once again @ChrisMcKee

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Bug
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants