Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
events /
node_modules /
needle /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
deflated-stream.js
524
B
-rw-rw-r--
digest-auth.js
325
B
-rw-rw-r--
download-to-file.js
583
B
-rw-rw-r--
multipart-stream.js
531
B
-rw-rw-r--
parsed-stream.js
535
B
-rw-rw-r--
parsed-stream2.js
669
B
-rw-rw-r--
stream-events.js
538
B
-rw-rw-r--
stream-to-file.js
360
B
-rw-rw-r--
upload-image.js
1010
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : upload-image.js
var needle = require('../'), path = require('path'); var image = 'https://upload.wikimedia.org/wikipedia/commons/a/af/Tux.png'; function upload(obj, cb) { console.log('Uploading image...'); var url = 'http://deviantsart.com'; var opts = { timeout: 10000, follow: 3, multipart: true }; var params = { file: obj } needle.post(url, params, opts, function(err, resp) { if (err || !resp.body.match('url')) return cb(err || new Error('No image URL found.')) cb(null, JSON.parse(resp.body).url) }) } function download(url, cb) { console.log('Getting ' + url); needle.get(url, function(err, resp) { if (err) throw err; cb(null, resp.body); }) } //////////////////////////////////////// // ok, now go. download(image, function(err, buffer) { if (err) throw err; var obj = { buffer: buffer, content_type: 'image/png' }; upload(obj, function(err, url) { if (err) throw err; console.log('Image uploaded to ' + url); }) })
Close