Skip to content

Commit

Permalink
v6.3 - see CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
xnl-h4ck3r committed Jun 16, 2024
1 parent 345c379 commit 586cce2
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
## Changelog

- v6.3

- Changed

- A fix for Issue 28 - https://github.com/xnl-h4ck3r/xnLinkFinder/issues/28

- v6.2

- New
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<center><img src="https://github.com/xnl-h4ck3r/xnLinkFinder/blob/main/xnLinkFinder/images/title.png"></center>

## About - v6.2
## About - v6.3

This is a tool used to discover endpoints (and potential parameters) for a given target. It can find them by:

Expand Down
2 changes: 1 addition & 1 deletion xnLinkFinder/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__="6.2"
__version__="6.3"
8 changes: 6 additions & 2 deletions xnLinkFinder/xnLinkFinder.py
Original file line number Diff line number Diff line change
Expand Up @@ -2942,7 +2942,7 @@ def processEachInput(input):
"""
Process the input, whether its from -i or <stdin>
"""
global burpFile, zapFile, caidoFile, urlPassed, stdFile, stdinFile, dirPassed, stdinMultiple, linksFound, linksVisited, totalRequests, skippedRequests, failedRequests, paramsFound, waymoreMode, stopProgram, contentTypesProcessed, oosLinksFound
global burpFile, zapFile, caidoFile, urlPassed, stdFile, stdinFile, dirPassed, stdinMultiple, linksFound, linksVisited, totalRequests, skippedRequests, failedRequests, paramsFound, waymoreMode, stopProgram, contentTypesProcessed, oosLinksFound, lstPathWords, wordsFound

if stopProgram is None:
checkMaxTimeLimit()
Expand Down Expand Up @@ -3094,6 +3094,8 @@ def processEachInput(input):
linksVisited = set()
paramsFound = set()
contentTypesProcessed = set()
wordsFound = set()
lstPathWords = set()
totalRequests = 0
skippedRequests = 0
failedRequests = 0
Expand Down Expand Up @@ -3724,7 +3726,7 @@ def checkMaxTimeLimit():

# Run xnLinkFinder
def main():
global args, userAgents, stopProgram, burpFile, zapFile, caidoFile, dirPassed, waymoreMode, currentUAGroup, waymoreFiles, linksVisited, maxMemoryPercent, linksFound, paramsFound, contentTypesProcessed, totalRequests, skippedRequests, failedRequests, oosLinksFound, LINK_REGEX_FILES
global args, userAgents, stopProgram, burpFile, zapFile, caidoFile, dirPassed, waymoreMode, currentUAGroup, waymoreFiles, linksVisited, maxMemoryPercent, linksFound, paramsFound, contentTypesProcessed, totalRequests, skippedRequests, failedRequests, oosLinksFound, lstPathWords, wordsFound, LINK_REGEX_FILES

# Tell Python to run the handler() function when SIGINT is received
signal(SIGINT, handler)
Expand Down Expand Up @@ -4135,6 +4137,8 @@ def main():
linksVisited = set()
paramsFound = set()
contentTypesProcessed = set()
wordsFound = set()
lstPathWords = set()
totalRequests = 0
skippedRequests = 0
failedRequests = 0
Expand Down

0 comments on commit 586cce2

Please sign in to comment.