Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/smiegles/extract-relative-url-heapsnapshot
Extract relative urls from a heap snapshot
https://github.com/smiegles/extract-relative-url-heapsnapshot
Last synced: 22 days ago
JSON representation
Extract relative urls from a heap snapshot
- Host: GitHub
- URL: https://github.com/smiegles/extract-relative-url-heapsnapshot
- Owner: smiegles
- Created: 2020-07-13T14:43:17.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-05-30T16:23:06.000Z (over 3 years ago)
- Last Synced: 2024-08-05T17:28:03.772Z (4 months ago)
- Language: JavaScript
- Size: 40 KB
- Stars: 86
- Watchers: 7
- Forks: 17
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-hacking-lists - smiegles/extract-relative-url-heapsnapshot - Extract relative urls from a heap snapshot (JavaScript)
README
# HeapProfiler Snapshot relative URL extractor.
A simple Node.js script that takes a snapshot of a memory heap from a webpage and then extracts the relative urls. This is inspired by [@filedescriptor's](https://twitter.com/filedescriptor) "[Improve Your Hacking Skills Using Devtools](https://www.youtube.com/watch?v=Y1S5s3FmFsI&feature=youtu.be&t=204)" video.
# How to use
```
npm install
node main.js https://tweetdeck.twitter.com/
```__Response snippet__
_Note that not all returned paths will be "correct" and there will be bogus results between it_
```
/media/upload.json
/mutes/conversations/create.json
/mutes/conversations/destroy.json
/mutes/users/create.json
/mutes/users/destroy.json
/mutes/users/ids.json
/saved_searches/list.json
/schedule/status/list.json
/schedule/status/lookup.json
/schedule/status/tweet.json
/search/tweets.json
/search/typeahead.json
/search/universal.json
/statuses/flag_possibly_sensitive.json
/statuses/following_timeline.json
/statuses/home_timeline.json
/statuses/lookup.json
/statuses/mentions_timeline.json
/statuses/oembed.json
/statuses/show.json
/statuses/update.json
/statuses/user_timeline.json
/strato/column/None/tweetdeck/sendFeedback
/strato/column/Non
/schedule/list
/translations/show.json
/trends/available.json
```# Contribution
Open for contribution, right now the script is lacking:
1. A decent Regex to find relative and absolute paths.