This post is by a banned member (Broke_Dev) - Unhide
OP 25 August, 2022 - 11:05 AM
Reply
Scammers Profile Link:https://cracked.sh/thinkorsink
Sales Thread: https://cracked.sh/Thread-Dev0-Your-1-Coding-Service
Amount or Item(s) Scammed: 10-30$
Screenshots of Communication: None banned
Additional Information:
I paid for a url checker to be made within the same day
He did not make it
Then i said make it today whereas he just banned me
And now i would like a 10$ refund as partial was only made
Crypto address for a refund: bc1q5uz869nlc3pjue9jh99wa3pj36ey8qqjf5tsdh
Discord: DM
This post is by a banned member (Leechometer) - Unhide
25 August, 2022 - 11:05 AM
Reply
System bot message: @thinkorsink ( thinkorsink) has been notified about this dispute via private messages and has 24hours to reply in this thread
This post is by a banned member (Broke_Dev) - Unhide
OP 25 August, 2022 - 11:13 AM
(This post was last modified: 25 August, 2022 - 11:15 AM by Broke_Dev.)
Reply
This post is by a banned member (abbdsadha) - Unhide
25 August, 2022 - 11:41 AM
Reply
(25 August, 2022 - 11:13 AM)Broke Wrote: Show More
Hey,
I have successfully made all of the features @ broke requested, except one, for which I can give them a $3 refund.
Regards,
thinkorsink.
This post is by a banned member (Broke_Dev) - Unhide
OP 25 August, 2022 - 12:14 PM
(This post was last modified: 25 August, 2022 - 12:15 PM by Broke_Dev.)
Reply
https://media.discordapp.net/attachments...nknown.png
User telling to leak the project
User also claiming to give a invalid amount for a refund of 2$ when teh required amount is 10$
@thinkorsink i paid u 10$ for that feature alone i think in ticket along with counter which is broken but i managed to fix it
@ Liars ban this retarded kid till he refunds my 10 bucks
Discord: DM
This post is by a banned member (abbdsadha) - Unhide
25 August, 2022 - 12:25 PM
(This post was last modified: 25 August, 2022 - 12:48 PM by abbdsadha. Edited 1 time in total.)
Reply
(25 August, 2022 - 12:14 PM)Broke Wrote: Show Morehttps://media.discordapp.net/attachments...nknown.png
User telling to leak the project
User also claiming to give a invalid amount for a refund of 2$ when teh required amount is 10$
@thinkorsink i paid u 10$ for that feature alone i think in ticket along with counter which is broken but i managed to fix it
@ Liars ban this retarded kid till he refunds my 10 bucks
Okay, here I go.
On the initial extra $10 agreement, you said you needed:
a) How many URLs are checked
b) Invalid & Valid count
c) CPM
https://media.discordapp.net/attachments....24.50.png (user later mentioned he didn't need me to color the text.)
Now, I have provided you the first two, except the last one. I am willingly offering you to refund $5 (more than I should)
Please take it, close this report and move on. @ Liars I hope you understand that I am in the right.
Also, there was no agreement I couldn't share your project on open source platforms (in this case, GitHub).
!!!I DID NOT SHARE THE PROJECT!!!!
(25 August, 2022 - 12:25 PM)thinkorsink Wrote: Show More (25 August, 2022 - 12:14 PM)Broke Wrote: Show Morehttps://media.discordapp.net/attachments...nknown.png
User telling to leak the project
User also claiming to give a invalid amount for a refund of 2$ when teh required amount is 10$
@thinkorsink i paid u 10$ for that feature alone i think in ticket along with counter which is broken but i managed to fix it
@ Liars ban this retarded kid till he refunds my 10 bucks
Okay, here I go.
On the initial extra $10 agreement, you said you needed:
a) How many URLs are checked
b) Invalid & Valid count
c) CPM
https://media.discordapp.net/attachments....24.50.png (user later mentioned he didn't need me to color the text.)
Now, I have provided you the first two, except the last one. I am willingly offering you to refund $5 (more than I should)
Please take it, close this report and move on. @ Liars I hope you understand that I am in the right.
Also, there was no agreement I couldn't share your project on open source platforms (in this case, GitHub).
!!!I DID NOT SHARE THE PROJECT!!!! Refunded $7.60, way more than I should.
Transaction ID: 3651ad15ed7cef18ca64ef982a1cab0d33846ddc98a15b0211d0aeee39b3b074
This post is by a banned member (Broke_Dev) - Unhide
OP 25 August, 2022 - 12:51 PM
(This post was last modified: 25 August, 2022 - 09:53 PM by Broke_Dev.)
Reply
Solved, Closed
Scam report has een opened again
Leaking source of my project
https://media.discordapp.net/attachments...nknown.png
Code:
#[allow(dead_code)]
use std::{
fs::OpenOptions,
fs::File,
io::{prelude::*, BufReader},
path::Path,
thread::{self},
};
use rfd::FileDialog;
use text_io::read;
use std::sync::atomic::{AtomicU32, Ordering};
use std::sync::Arc;
fn load(filename: impl AsRef<Path>) -> Vec<String> {
let file = File::open(filename)
.expect("error");
let buffer = BufReader::new(file);
buffer.lines()
.map(|l| l.expect("error"))
.collect()
}
fn write(filename: impl AsRef<Path>, mut t_write: String) {
let mut file = OpenOptions::new()
.append(true)
.open(filename)
.expect("error");
t_write.push_str("\n");
file.write_all(t_write
.as_bytes())
.unwrap();
}
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let file = FileDialog::new()
.add_filter("text", &["txt"])
.set_directory(".")
.pick_file();
let url = load(file.unwrap());
println!("{}", url.len());
let threads: i16 = read!("{}\n");
println!("Splitting URLs...");
let mut values = url
.into_iter()
.peekable();
let mut chunks = Vec::new();
while values.peek().is_some() {
let chunk: Vec<_> = values
.by_ref()
.take(threads as usize)
.collect();
chunks.push(chunk);
}
let mut handles = Vec::new();
println!("Done.");
let checked = Arc::new(AtomicU32::new(1));
let valid = Arc::new(AtomicU32::new(1));
let invalid = Arc::new(AtomicU32::new(1));
// println!("{:?}", chunks);
for chunk in chunks {
let handle = thread::spawn({
let c_clone = Arc::clone(&checked);
let v_clone = Arc::clone(&valid);
let i_clone = Arc::clone(&invalid);
move ||
for x in chunk {
print! ("\x1B[2J\x1B[1;1H");
let resp = reqwest
::blocking
::get(x.as_str());
let _resp_r = match resp {
Ok(_ok) => {
c_clone.fetch_add(1, Ordering::SeqCst);
v_clone.fetch_add(1, Ordering::SeqCst);
write("valid.txt".to_string(), x);
println!("{} | Valid: {} | Invalid: {}",
c_clone.load(Ordering::SeqCst),
v_clone.load(Ordering::SeqCst),
i_clone.load(Ordering::SeqCst));}
Err(_error) => {
c_clone.fetch_add(1, Ordering::SeqCst);
i_clone.fetch_add(1, Ordering::SeqCst);
write("invalid.txt".to_string(), x);
println!("{} | Valid: {} | Invalid: {}",
c_clone.load(Ordering::SeqCst),
v_clone.load(Ordering::SeqCst),
i_clone.load(Ordering::SeqCst));}
};
}
});
handles.push(handle);
}
for x in handles {
x.join().unwrap();
}
Ok(())
}
https://pastebin.com/Y8984acX
User leaked the source code in cracked.io shoutbox
I would like a full refund + compensation fees (Ranging from 30$-100$) of my project being leaked
Or the user being banned
@ Liars and @ Darkness please deal with this asap
Discord: DM
This post is by a banned member (abbdsadha) - Unhide
25 August, 2022 - 10:03 PM
Reply
(25 August, 2022 - 12:51 PM)Broke Wrote: Show MoreSolved, Closed
Scam report has een opened again
Leaking source of my project
https://media.discordapp.net/attachments...nknown.png
Code:
#[allow(dead_code)]
use std::{
fs::OpenOptions,
fs::File,
io::{prelude::*, BufReader},
path::Path,
thread::{self},
};
use rfd::FileDialog;
use text_io::read;
use std::sync::atomic::{AtomicU32, Ordering};
use std::sync::Arc;
fn load(filename: impl AsRef<Path>) -> Vec<String> {
let file = File::open(filename)
.expect("error");
let buffer = BufReader::new(file);
buffer.lines()
.map(|l| l.expect("error"))
.collect()
}
fn write(filename: impl AsRef<Path>, mut t_write: String) {
let mut file = OpenOptions::new()
.append(true)
.open(filename)
.expect("error");
t_write.push_str("\n");
file.write_all(t_write
.as_bytes())
.unwrap();
}
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let file = FileDialog::new()
.add_filter("text", &["txt"])
.set_directory(".")
.pick_file();
let url = load(file.unwrap());
println!("{}", url.len());
let threads: i16 = read!("{}\n");
println!("Splitting URLs...");
let mut values = url
.into_iter()
.peekable();
let mut chunks = Vec::new();
while values.peek().is_some() {
let chunk: Vec<_> = values
.by_ref()
.take(threads as usize)
.collect();
chunks.push(chunk);
}
let mut handles = Vec::new();
println!("Done.");
let checked = Arc::new(AtomicU32::new(1));
let valid = Arc::new(AtomicU32::new(1));
let invalid = Arc::new(AtomicU32::new(1));
// println!("{:?}", chunks);
for chunk in chunks {
let handle = thread::spawn({
let c_clone = Arc::clone(&checked);
let v_clone = Arc::clone(&valid);
let i_clone = Arc::clone(&invalid);
move ||
for x in chunk {
print! ("\x1B[2J\x1B[1;1H");
let resp = reqwest
::blocking
::get(x.as_str());
let _resp_r = match resp {
Ok(_ok) => {
c_clone.fetch_add(1, Ordering::SeqCst);
v_clone.fetch_add(1, Ordering::SeqCst);
write("valid.txt".to_string(), x);
println!("{} | Valid: {} | Invalid: {}",
c_clone.load(Ordering::SeqCst),
v_clone.load(Ordering::SeqCst),
i_clone.load(Ordering::SeqCst));}
Err(_error) => {
c_clone.fetch_add(1, Ordering::SeqCst);
i_clone.fetch_add(1, Ordering::SeqCst);
write("invalid.txt".to_string(), x);
println!("{} | Valid: {} | Invalid: {}",
c_clone.load(Ordering::SeqCst),
v_clone.load(Ordering::SeqCst),
i_clone.load(Ordering::SeqCst));}
};
}
});
handles.push(handle);
}
for x in handles {
x.join().unwrap();
}
Ok(())
}
https://pastebin.com/Y8984acX
User leaked the source code in cracked.io shoutbox
I would like a full refund + compensation fees (Ranging from 30$-100$) of my project being leaked
Or the user being banned
@ Liars and @ Darkness please deal with this asap Hello, there was no “leaking” (although this was a share for other members to learn programming) policy before making the program, but from now on I will definitely agree with my customers about sharing the code beforehand.
Regards,
thinkorsink
|