{"id":48237165,"url":"https://github.com/zyloxweeb/nulltrace","last_synced_at":"2026-04-04T20:02:11.571Z","repository":{"id":347789724,"uuid":"1194806494","full_name":"zyloxweeb/NullTrace","owner":"zyloxweeb","description":null,"archived":false,"fork":false,"pushed_at":"2026-03-29T13:54:21.000Z","size":216,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-29T16:46:37.495Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zyloxweeb.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-03-28T20:51:59.000Z","updated_at":"2026-03-29T13:54:25.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/zyloxweeb/NullTrace","commit_stats":null,"previous_names":["zyloxweeb/nulltrace"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/zyloxweeb/NullTrace","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zyloxweeb%2FNullTrace","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zyloxweeb%2FNullTrace/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zyloxweeb%2FNullTrace/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zyloxweeb%2FNullTrace/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zyloxweeb","download_url":"https://codeload.github.com/zyloxweeb/NullTrace/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zyloxweeb%2FNullTrace/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31411662,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T19:29:44.979Z","status":"ssl_error","status_checked_at":"2026-04-04T19:29:11.535Z","response_time":60,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-04-04T20:02:08.760Z","updated_at":"2026-04-04T20:02:11.563Z","avatar_url":"https://github.com/zyloxweeb.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# NullTrace\n\nNullTrace is a self-hosted static analysis platform for suspicious files.\n\nIt is designed as a personal cybersecurity project focused on:\n- artifact inspection\n- IOC extraction\n- suspicious pattern detection\n- trust-aware scoring\n- verdict-based analysis\n\nThe goal is to build a tool that feels closer to a real analysis workspace rather than a generic dashboard.\n\n---\n\n## Features\n\n- Static file analysis  \n- SHA-256 and MD5 hashing  \n- MIME type and file category detection  \n- Extracted strings inspection  \n- IOC extraction:\n  - URLs  \n  - domains  \n  - IPs  \n  - emails  \n- Suspicious pattern detection  \n- Trust-aware scoring system  \n- Verdict classification:\n  - benign  \n  - likely_benign  \n  - suspicious  \n  - high_risk  \n- Saved analysis cases  \n- Interactive frontend workspace  \n\n---\n\n## Tech Stack\n\n### Backend\n- FastAPI  \n- Python  \n- Uvicorn  \n\n### Frontend\n- React  \n- TypeScript  \n- Vite  \n- Tailwind CSS  \n- Framer Motion  \n\n---\n\n## Project Structure\n\nNullTrace/\n│\n├── backend/\n│   ├── app/\n│   │   ├── analyzers/\n│   │   ├── detection/\n│   │   ├── extractors/\n│   │   ├── scoring/\n│   │   ├── services/\n│   │   ├── utils/\n│   │   └── main.py\n│   ├── storage/\n│   │   └── analyses/\n│   └── requirements.txt\n│\n├── frontend/\n│   ├── public/\n│   ├── src/\n│   │   ├── components/\n│   │   ├── services/\n│   │   ├── types/\n│   │   └── App.tsx\n│   └── package.json\n│\n└── README.md\n\n---\n\n## Current Status\n\nNullTrace is currently under active development.\n\nThe project already includes a working backend and frontend, with support for:\n\n- file upload  \n- local static analysis  \n- stored case navigation  \n- verdict-based result visualization  \n\nThis repository is being updated incrementally as the project evolves.\n\n---\n\n## Setup\n\n### Backend\n\ncd backend  \npython -m venv venv  \nvenv\\Scripts\\activate  \npip install -r requirements.txt  \npython -m uvicorn app.main:app --reload  \n\nBackend runs on:\n\nhttp://127.0.0.1:8000  \n\nSwagger docs:\n\nhttp://127.0.0.1:8000/docs  \n\n---\n\n### Frontend\n\ncd frontend  \nnpm install  \nnpm run dev  \n\nFrontend runs on:\n\nhttp://localhost:5173  \n\n---\n\n## Example Workflow\n\n1. Upload a file  \n2. NullTrace performs static analysis  \n3. The platform extracts indicators and suspicious patterns  \n4. Trust signals are evaluated  \n5. A final verdict is generated and displayed in the analysis workspace  \n\n---\n\n## Roadmap\n\n- Better trust modeling  \n- Improved false positive reduction  \n- Stronger IOC classification  \n- Richer frontend motion and visuals  \n- Report export  \n- File-type specific parsing  \n- PE-focused enhancements  \n- Smarter verdict confidence system  \n\n---\n\n## Disclaimer\n\nNullTrace is a personal educational project for defensive security research and static analysis experimentation.\n\nIt is not intended to replace professional malware analysis platforms.\n\n---\n\n## Author\n\nGiuseppe Fattor (aka zylox).\n\n---\n\n## License\n\nThis project is licensed under the MIT License.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzyloxweeb%2Fnulltrace","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzyloxweeb%2Fnulltrace","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzyloxweeb%2Fnulltrace/lists"}