Skip to content

Commit 211485e

Browse files
Merge pull request #94 from vincenzocaputo/develop
Version 0.24.2
2 parents 5f95999 + da01e5c commit 211485e

File tree

8 files changed

+35
-8
lines changed

8 files changed

+35
-8
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [ 0.24.2 ] - 2025-06-21
8+
9+
### Add
10+
- APNIC web resoource
11+
12+
### Change
13+
- Update Emailrep properties (an account is now required)
14+
15+
### Fix
16+
- Automatic field population on HIBP
17+
- Email address encoding in Cleantalk URL
18+
- Threat Actor editing form in graph
19+
- Minor fixes in Graph editor
20+
721
## [ 0.24.1 ] - 2025-04-19
822

923
### Add

assets/tools-icons/apnic.png

969 Bytes
Loading

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"manifest_version": 2,
33
"name": "FoxyRecon",
4-
"version": "0.24.1",
4+
"version": "0.24.2",
55
"description": "A Firefox add-on for OSINT investigations",
66

77
"icons": {

src/graph/graph.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,8 +319,8 @@ input:checked + .slider:before {
319319
.btn .button-label {
320320
height: 32px;
321321
line-height: 32px;
322-
float: left;
323322
margin-left: 5px;
323+
text-align: left;
324324
}
325325

326326
#add-link-button {

src/graph/img/relationship.png

14.2 KB
Loading

src/graph/stix/relationship.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
function createRelationshipForm(data, callback) {
2-
const formHandler = new FormHandler("Add Relationship", "img/relationship-noback-flat.png");
2+
const formHandler = new FormHandler("Add Relationship", "img/relationship.png");
33
submitEvent = evt => {
44
Graph.getInstance().then( (graph) => {
55
var stix = {}

src/graph/stix/sdo/threat-actor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ function createThreatActorForm(evt, title, stix={}) {
4141
formHandler.addFormField("text", "Name", "name", stix["name"], true);
4242
formHandler.addFormField("textarea", "Description", "description", stix["description"]);
4343
formHandler.addMultipleInputField("Threat Actor Types", "threat_actor_types", vocabularies["threat-actor-type-ov"], false, stix["threat_actor_types"]);
44-
formHandler.addMultipleInputField("Aliases", "aliases", stix["aliases"]);
44+
formHandler.addMultipleInputField("Aliases", "aliases", [], false, stix["aliases"]);
4545
formHandler.addFormField("datetime-local", "First Seen", "first_seen", stix["first_seen"]);
4646
formHandler.addFormField("datetime-local", "Last Seen", "last_seen", stix["last_seen"]);
4747
formHandler.addMultipleInputField("Threat Actor Roles", "roles", vocabularies["threat-actor-role-ov"], false, stix["roles"]);

src/json/tools.json

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,18 @@
4141
"tags": ["ioc","dns","whois"],
4242
"autoGraph": true
4343
},
44+
{
45+
"name": "APNIC WHOWAS",
46+
"url": {
47+
"ip": "https://www.apnic.net/static/whowas-ui/#%s"
48+
},
49+
"desc": "The APNIC whowas service provides visibility into prior states of APNIC resource registration records.",
50+
"icon": "apnic.png",
51+
"color": "#006fab",
52+
"types": ["ip"],
53+
"tags": ["whois","history"],
54+
"autoGraph": false
55+
},
4456
{
4557
"name": "AttackerKB",
4658
"url": {
@@ -175,7 +187,7 @@
175187
"url": {
176188
"domain": "https://cleantalk.org/blacklists/%s",
177189
"ip": "https://cleantalk.org/blacklists/%s",
178-
"email": "https://cleantalk.org/blacklists/%s"
190+
"email": "https://cleantalk.org/blacklists/%r"
179191
},
180192
"desc": "Check IP Addresses, Email, Subnet, Domain for Spam in Blacklists Database.",
181193
"icon": "cleantalk.png",
@@ -397,7 +409,8 @@
397409
"color": "#2FD3AA",
398410
"types": ["email"],
399411
"tags": ["rep"],
400-
"autoGraph": false
412+
"autoGraph": false,
413+
"accountRequired": true
401414
},
402415
{
403416
"name": "EmobileTracker",
@@ -704,8 +717,8 @@
704717
"desc": "Check if your email or phone is in a data breach",
705718
"icon": "hibp.png",
706719
"color": "#2A698A",
707-
"inputSelector": "#Account",
708-
"submitQuery": "#searchPwnage",
720+
"inputSelector": "#emailInput",
721+
"submitQuery": "#checkButton",
709722
"types": ["email", "phone"],
710723
"tags": ["leaks"],
711724
"autoGraph": false

0 commit comments

Comments
 (0)