Skip to content

Commit

Permalink
Merge pull request #44 from vincenzocaputo/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
vincenzocaputo committed Jul 26, 2023
2 parents 4516f91 + 121131e commit 9927b20
Show file tree
Hide file tree
Showing 7 changed files with 41 additions and 18 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.17.0] - 2023-07-26
### Add
- Web Check resource for domains and urls
- Hunter.how resource for domains and ip addresses

### Fix
- Field auto-fill for web resources that support only post requests

## [0.16.0] - 2023-05-31
### Add
- Bin icon to clean indicators list and show the popup main screen
Expand Down
Binary file added assets/tools-icons/hunterhow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/tools-icons/webcheck.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 2 additions & 16 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "FoxyRecon",
"version": "0.16.0",
"version": "0.17.0",
"description": "A Firefox add-on for OSINT investigations",

"icons": {
Expand Down Expand Up @@ -31,21 +31,7 @@
]
},
{
"matches": [
"https://dnsdumpster.com/",
"https://haveibeenpwned.com/",
"https://centralops.net/co/*",
"https://www.urlvoid.com/*",
"https://urlscan.io/",
"https://urlscan.io/whois/",
"https://www.eurodns.com/whois-search",
"https://www.virustotal.com/gui/home/url/",
"https://app.any.run/submissions/",
"https://leakcheck.io/",
"https://leakpeek.com/",
"https://breachdirectory.org/",
"https://www.digicert.com/help/"
],
"matches": ["*://*/*"],
"js": ["src/content_scripts/autofill.js"]
}
],
Expand Down
2 changes: 2 additions & 0 deletions src/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,8 @@ browser.runtime.onMessage.addListener(function(request, sender, sendResponse) {
} else {
submit = "false";
}
console.log(query);

sendResponse({msg: localStorage.getItem("indicator"), query: query, submit: submit});
// Consume the request (to avoid clicking the button more times for the same request)
localStorage.setItem("submit-btn-query","");
Expand Down
7 changes: 5 additions & 2 deletions src/content_scripts/autofill.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

let indicator = "";
// Send a message to background script in order to retrieve the indicator saved in the local storage
window.addEventListener("load", function() {
function sendMessageAndFill() {
browser.runtime.sendMessage({
id: 1,
msg: ""
Expand Down Expand Up @@ -83,4 +83,7 @@ window.addEventListener("load", function() {
},(error)=>{
console.error(error);
});
});
}


setTimeout(sendMessageAndFill(), 500);
24 changes: 24 additions & 0 deletions src/json/tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -441,6 +441,18 @@
"color": "#FF5722",
"types": ["email"],
"tags": ["rep"]
},
{
"name": "Hunter.how",
"url": {
"domain": "https://hunter.how/list?searchValue=domain%253D%22%s%22",
"ip": "https://hunter.how/list?searchValue=ip%253D%22%s%22"
},
"desc": "Free internet search engine for internet researchers",
"icon": "hunterhow.png",
"color": "#FD5F00",
"types": ["domain", "ip"],
"tags": ["open-ports", "http-headers"]
},
{
"name": "Hurricane Electric",
Expand Down Expand Up @@ -1054,6 +1066,18 @@
"types": ["domain"],
"tags": ["techs"]
},
{
"name": "Web Check",
"url": {
"url": "https://web-check.as93.net/results/%s",
"domain": "https://web-check.as93.net/results/%s"
},
"desc": "Get an insight into the inner-workings of a given website: uncover potential attack vectors, analyse server architecture, view security configurations, and learn what technologies a site is using.",
"icon": "webcheck.png",
"color": "#141e2c",
"types": ["domain", "url"],
"tags": ["whois","dns","tls","open-ports"]
},
{
"name": "WhatCMS",
"url": {
Expand Down

0 comments on commit 9927b20

Please sign in to comment.