This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import frida | |
argv = ["C:\\windows\\notepad.exe", "test.txt", "hello!"] | |
device = frida.get_local_device() | |
pid = device.spawn(argv) | |
# attach stuff here | |
device.resume(pid) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function formatDuration (seconds) { | |
if ( !seconds ) | |
return 'now'; | |
let secondsInYear = 31536000; | |
let secondsInDay = 86400; | |
let secondsInHour = 3600; | |
let secondsInMinute = 60; | |
let _years = Math.floor(seconds / secondsInYear); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="recent-players-list"></div> |