Skip to content

Commit 5586f8d

Browse files
committed
opengen-bot
0 parents  commit 5586f8d

File tree

3 files changed

+138
-0
lines changed

3 files changed

+138
-0
lines changed

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2022 I2rys
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<h1 align="center">opengen-bot</h1>
2+
<h4 align="center">Generate Netflix, Spotify, NordVPN & Disney plus accounts<h4>
3+
<p align="center">
4+
<a href="https://github.com/I2rys/opengen-bot/blob/main/LICENSE"><img src="https://img.shields.io/github/license/I2rys/opengen-bot?style=flat-square"></img></a>
5+
<a href="https://github.com/I2rys/opengen-bot/issues"><img src="https://img.shields.io/github/issues/I2rys/opengen-bot.svg"></img></a>
6+
<a href="https://nodejs.org/"><img src="https://img.shields.io/badge/-Nodejs-green?style=flat-square&logo=Node.js"></img></a>
7+
</p>
8+
9+
10+
## Installation
11+
Github:
12+
```
13+
git clone https://github.com/I2rys/opengen-bot
14+
```
15+
16+
NPM Packages:
17+
```
18+
npm i axios
19+
```
20+
21+
## Usage
22+
```
23+
node index.js <account_type> <amount> <output>
24+
```
25+
+ account_type - The type of the account to generate.
26+
+ amount - The amount of accounts to generate.
27+
+ output - The output of the generated accounts.
28+
29+
## License
30+
MIT © I2rys

index.js

+87
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
//Dependencies
2+
const Axios = require("axios")
3+
const Fs = require("fs")
4+
5+
//Variables
6+
const Self_Args = process.argv.slice(2)
7+
8+
var Self = {
9+
grab_index: 0,
10+
max: 0,
11+
results: []
12+
}
13+
14+
//Functions
15+
async function Grab(account_type){
16+
try{
17+
if(Self.grab_index === Self.max){
18+
console.log(`Finished grabbing ${Self.max} ${account_type} accounts.`)
19+
console.log(`Saving the results to ${Self_Args[2]}`)
20+
Fs.writeFileSync(Self_Args[2], Self.results.join("\n"), "utf8")
21+
console.log(`Results successfully saved to ${Self_Args[2]}`)
22+
process.exit()
23+
}
24+
25+
console.log(`Grabbing ${account_type} account. Index: ${Self.grab_index}`)
26+
27+
var response = await Axios({
28+
method: "GET",
29+
url: `https://opengen.dpkghub.com/api/generate.php?type=${account_type}`
30+
})
31+
32+
response = response.data
33+
34+
if(Self.results.indexOf(response) !== -1){
35+
console.log(`Unable to grab ${account_type} account, due to duplicate/error. Index: ${Self.grab_index}`)
36+
console.log("Retrying...")
37+
return Grab(account_type)
38+
}
39+
40+
Self.results.push(response)
41+
42+
Self.grab_index++
43+
return Grab(account_type)
44+
}catch{
45+
console.log(`Unable to grab ${account_type} account, due to duplicate/error. Index: ${Self.grab_index}`)
46+
console.log("Retrying...")
47+
return Grab(account_type)
48+
}
49+
}
50+
51+
//Main
52+
if(!Self_Args.length){
53+
console.log("Account types: Netflix, Spotify, NordVPN & Disney(Disney plus).")
54+
console.log("node index.js <account_type> <amount> <output>")
55+
process.exit()
56+
}
57+
58+
if(isNaN(Self_Args[1])){
59+
console.log("amount is not a number.")
60+
process.exit()
61+
}
62+
63+
if(!Self_Args[2]){
64+
console.log("Invalid output.")
65+
process.exit()
66+
}
67+
68+
Self_Args[0] = Self_Args[0].toLowerCase()
69+
Self.max = parseInt(Self_Args[1])
70+
71+
switch(Self_Args[0]){
72+
case "netflix":
73+
Grab("Netflix")
74+
break
75+
case "spotify":
76+
Grab("Spotify")
77+
break
78+
case "nordvpn":
79+
Grab("NordVPN")
80+
break
81+
case "disney":
82+
Grab("Disney")
83+
break
84+
default:
85+
console.log("Invalid account_type.")
86+
break
87+
}

0 commit comments

Comments
 (0)