https://github.com/smx-smx/jstracepoc
Proof of concept that traces all Javascript lines
https://github.com/smx-smx/jstracepoc
breakpoint debug electron javascript poc trace
Last synced: 27 days ago
JSON representation
Proof of concept that traces all Javascript lines
- Host: GitHub
- URL: https://github.com/smx-smx/jstracepoc
- Owner: smx-smx
- Created: 2019-06-03T23:27:11.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-06-03T23:45:57.000Z (almost 7 years ago)
- Last Synced: 2025-03-21T10:53:15.702Z (about 1 year ago)
- Topics: breakpoint, debug, electron, javascript, poc, trace
- Language: C#
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JsTracePOC
Proof of concept that traces all Javascript lines by putting a breakpoint on each line.
Not sure how well it works with minified files since they pack more lines into one.
## Note: It's not particularly fast/efficient to place a breakpoint per line.
An alternative could be to replace all JS statements with a logger trampoline, but it would alter the original script