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

Improved Aquatone screenshots #72

Closed
0xdade opened this issue Feb 6, 2019 · 0 comments
Closed

Improved Aquatone screenshots #72

0xdade opened this issue Feb 6, 2019 · 0 comments
Labels
agent affecting natlas-agent enhancement New feature or request server affecting natlas-server

Comments

@0xdade
Copy link
Member

0xdade commented Feb 6, 2019

Aquatone supports reading in an nmap file and parsing out urls and ip addresses to take screenshots right now. Right now we are looking for hardcoded specific image names based on the ip address and port 80 or 443 and completely ignoring any screenshots for any other found hosts.

Instead of doing this, we can look at all image files in the aquatone directory for our scan, save the file name and the image contents, and then pass that back to the server in one large aquatone object.

Example:

{
    "ip": "127.0.0.1",
    "hostname": "secretdomain.local",
    "scan_id": "aaaaaaaaaa",
    "ports": "80, 443, 8080",
    "ctime": "datetime.utcnow()",
    "nmap_data": "some nmap data..."
    "xml_data": "big xml data..."
    "gnmap_data": "small gnmap data..."
    "aquatone": { 
        {"filename":"127.0.0.1-80", "image":"base64blob1"}, 
        {"filename":"127.0.0.1-443", "image":"base64blob2"},
        {"filename":"127.0.0.1-8080", "image":"base64blob3"},
        {"filename":"secretdomain.local-443", "image":"base64blob4"}
}
@0xdade 0xdade added enhancement New feature or request server affecting natlas-server agent affecting natlas-agent labels Feb 6, 2019
@0xdade 0xdade added this to the v0.6 milestone Feb 16, 2019
@0xdade 0xdade modified the milestones: v0.6, v0.7 Mar 9, 2019
@0xdade 0xdade closed this as completed in e4bd873 Oct 6, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
agent affecting natlas-agent enhancement New feature or request server affecting natlas-server
Projects
None yet
Development

No branches or pull requests

1 participant