Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nowsecure/frida-screenshot
Grab screenshots using Frida.
https://github.com/nowsecure/frida-screenshot
frida frida-screenshot ios nodejs screenshot
Last synced: about 2 months ago
JSON representation
Grab screenshots using Frida.
- Host: GitHub
- URL: https://github.com/nowsecure/frida-screenshot
- Owner: nowsecure
- License: mit
- Created: 2016-02-17T23:23:55.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2023-06-26T17:11:30.000Z (over 1 year ago)
- Last Synced: 2024-11-02T17:36:37.184Z (2 months ago)
- Topics: frida, frida-screenshot, ios, nodejs, screenshot
- Language: TypeScript
- Homepage:
- Size: 28.3 KB
- Stars: 41
- Watchers: 10
- Forks: 9
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-iOS-security - frida-screenshot
- awesome-frida - frida-screenshot - Grab (iOS) screenshots (Libraries)
README
# frida-screenshot
Grab screenshots using [Frida](https://frida.re).
## Example
```js
import screenshot from 'frida-screenshot';const png = await screenshot();
send({
name: '+screenshot',
payload: {
timestamp: Date.now()
}
}, png);
```