Merge pull request #24 from theDesConnet/main
feature: add support proxies with authentication
This commit is contained in:
commit
ac3cae6d72
8 changed files with 34 additions and 10 deletions
|
@ -142,6 +142,7 @@ const attackHandlers = {
|
|||
|
||||
> 4. Requests fail to be sent to the target server (Read timeout and variations)
|
||||
**Re:** You must put the corresponding proxies in the file `data/proxies.txt`. On each line, put a different proxy that will be used to perform the attack. The format must be the following:
|
||||
- `protocol://user:password@host:port` (Proxy with authentication)
|
||||
- `protocol://host:port`
|
||||
- `host:port` (Uses http as default protocol)
|
||||
- `host` (Uses 8080 as default port)
|
||||
|
|
|
@ -28,9 +28,23 @@ export function loadUserAgents() {
|
|||
|
||||
export function loadProxies(): Proxy[] {
|
||||
const lines = loadFileLines(join(currentPath(), "data/proxies.txt"));
|
||||
|
||||
//RegEx for proxies with authentication (protocol://user:pass@host:port)
|
||||
const authProxiesRegEx = new RegExp(/^(http|https|socks4|socks5|):\/\/(\S+:\S+)@((\w+|\d+\.\d+\.\d+\.\d+):\d+)$/, 'g');
|
||||
|
||||
return lines.map((line) => {
|
||||
const [protocol, addr] = line.split("://");
|
||||
const [protocol, loginInfo] = line.split("://");
|
||||
|
||||
if (authProxiesRegEx.test(line)) {
|
||||
const [auth, addr] = loginInfo.split("@");
|
||||
const [user, pass] = auth.split(":");
|
||||
const [host, port] = addr.split(":");
|
||||
|
||||
return { protocol, host, port: parseInt(port), username: user, password: pass };
|
||||
} else {
|
||||
const [host, port] = loginInfo.split(":");
|
||||
|
||||
return { protocol, host, port: parseInt(port) };
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
export type ProxyProtocol = "http" | "https" | "socks4" | "socks5" | string;
|
||||
|
||||
export interface Proxy {
|
||||
username?: string;
|
||||
password?: string;
|
||||
protocol: ProxyProtocol;
|
||||
host: string;
|
||||
port: number;
|
||||
|
|
|
@ -87,10 +87,10 @@ class MinecraftBufferReader {
|
|||
|
||||
export function pingMinecraftServer(host, port, proxy) {
|
||||
return new Promise((resolve, reject) => {
|
||||
const { protocol, host: proxyHost, port: proxyPort } = proxy;
|
||||
const { protocol, host: proxyHost, port: proxyPort, username: proxyUsername, password: proxyPassword } = proxy;
|
||||
|
||||
const agent = new SocksProxyAgent(
|
||||
`${protocol}://${proxyHost}:${proxyPort}`
|
||||
`${protocol}://${proxyUsername && proxyPassword ? `${proxyUsername}:${proxyPassword}@` : ""}${proxyHost}:${proxyPort}`
|
||||
);
|
||||
|
||||
const socket = net.createConnection({
|
||||
|
|
|
@ -27,9 +27,16 @@ const startAttack = () => {
|
|||
host: proxy.host,
|
||||
port: proxy.port,
|
||||
};
|
||||
|
||||
if (proxy.username && proxy.password) {
|
||||
config.proxy.auth = {
|
||||
username: proxy.username,
|
||||
password: proxy.password,
|
||||
}
|
||||
}
|
||||
} else if (proxy.protocol === "socks4" || proxy.protocol === "socks5") {
|
||||
config.httpAgent = new SocksProxyAgent(
|
||||
`${proxy.protocol}://${proxy.host}:${proxy.port}`
|
||||
config.httpAgent, config.httpsAgent = new SocksProxyAgent(
|
||||
`${proxy.protocol}://${proxy.username && proxy.password ? `${proxy.username}:${proxy.password}@` : ""}${proxy.host}:${proxy.port}`
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ const startAttack = () => {
|
|||
Host: targetHost,
|
||||
},
|
||||
agent: new SocksProxyAgent(
|
||||
`${proxy.protocol}://${proxy.host}:${proxy.port}`
|
||||
`${proxy.protocol}://${proxy.username && proxy.password ? `${proxy.username}:${proxy.password}@` : ""}${proxy.host}:${proxy.port}`
|
||||
),
|
||||
};
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@ const startAttack = () => {
|
|||
socket.setTimeout(2000);
|
||||
|
||||
const proxyAgent = new SocksProxyAgent(
|
||||
`${proxy.protocol}://${proxy.host}:${proxy.port}`
|
||||
`${proxy.protocol}://${proxy.username && proxy.password ? `${proxy.username}:${proxy.password}@` : ""}${proxy.host}:${proxy.port}`
|
||||
);
|
||||
|
||||
setInterval(() => {
|
||||
|
|
|
@ -69,7 +69,7 @@ function ConfigureProxiesAndAgentsView() {
|
|||
onChange={(e) =>
|
||||
setConfiguration([e.target.value, configuration[1]])
|
||||
}
|
||||
placeholder="socks5://0.0.0.0"
|
||||
placeholder="socks5://0.0.0.0 socks4://user:pass@0.0.0.0:12345"
|
||||
></textarea>
|
||||
<p className="pl-1 mt-2 mb-1 italic">uas.txt</p>
|
||||
<textarea
|
||||
|
|
Loading…
Add table
Reference in a new issue