Best method for making easy money in 2024-2025

IamScammer

Regular Member
Jul 27, 2023
221
866
1. Buy a domain with a name similar to ‘’AI detector‘’.
2. Install WordPress
3. Create a page with a text box that allows people to type (or paste) text.
4. Below the text box, there should be a button. This button should say ‘DETECT AI’.
5. Set it up so that after the button is pressed, a message like this appears:

‘’It was detected that X% of the text was written with AI.‘’

Here you just have to set X to be a random number between 0-100. Configure it so that in 50-62% of cases the value is zero and in the other cases it is a non-zero number.

Use Elementor to build a site with fancy templates, fake testimonials and other nonsense to increase reliability. Publicise in university groups and digital marketing forums

That's it. Promote the site as an infallible AI detector and earn easy money :D:D:D

Real case:

1726249217556.png
 
1. Buy a domain with a name similar to ‘’AI detector‘’.
2. Install WordPress
3. Create a page with a text box that allows people to type (or paste) text.
4. Below the text box, there should be a button. This button should say ‘DETECT AI’.
5. Set it up so that after the button is pressed, a message like this appears:

‘’It was detected that X% of the text was written with AI.‘’

Here you just have to set X to be a random number between 0-100. Configure it so that in 50-62% of cases the value is zero and in the other cases it is a non-zero number.

Use Elementor to build a site with fancy templates, fake testimonials and other nonsense to increase reliability. Publicise in university groups and digital marketing forums

That's it. Promote the site as an infallible AI detector and earn easy money :D:D:D

Real case:

View attachment 376328
Like you implied, all AI detection tools are shit. That's why I'm concerned when ad networks say they want to stop allowing AI content bla bla bla.
 
If you want to make it more convincing, use a deterministic random approach as opposed to a unique result every time.
This way "I like poop." will always result as 85% ChatGPT.
JavaScript:
const sentence = "I like poop."
const seed = sentence
const rng = new RNG(seed)
const chat_gpt_probability = rng.get()

But to be honest, you can make it WAY better if you check if the input is mumbo jumbo vs words.
What about this, for all words in the sentence, check if said word exists in the English dictionary?
We can assume English-only because the customers would be English speakers.
JavaScript:
const dictionary = new Set();

// Fetch and load the dictionary if not already loaded
async function loadDictionary() {
    if (dictionary.size === 0) {
        const response = await fetch('https://raw.githubusercontent.com/dwyl/english-words/master/words.txt');
        const text = await response.text();
        const lines = text.split('\n');
        for (const line of lines) {
            const word = line.trim().toLowerCase();
            if (word) dictionary.add(word);
        }
    }
}

// Calculate the ratio of valid words in a given sentence
async function getValidWordRatio(sentence) {
    // Ensure the dictionary is loaded
    await loadDictionary();

    // Split the sentence into words by spaces
    const words = sentence.split(/\s+/);
    const totalWords = words.length;
    let validWordsCount = 0;

    // Count the number of valid words
    for (const word of words) {
        const cleanedWord = word.trim().toLowerCase();
        if (cleanedWord && dictionary.has(cleanedWord)) {
            validWordsCount++;
        }
    }

    // Calculate and return the ratio of valid words to total words
    return totalWords ? validWordsCount / totalWords : 0;
}

// Example usage
getValidWordRatio("hello world").then(console.log); // Output: 1.0 (both words are valid)
getValidWordRatio("h3llo world").then(console.log); // Output: 0.5 (only "world" is valid)
getValidWordRatio("This is a valid sentence.").then(console.log); // Output: 0.75 (valid words: "this", "is", "a", "valid")
getValidWordRatio("This sentence not r1ght.").then(console.log); // Output: 0.5 (valid words: "this", "sentence", "not")

But the ultimate solution is to do it the right way, download the ChatGPT model and put it into this, and you'll actually get the probability of it being ChatGPT:
Python:
from transformers import AutoTokenizer, AutoModelForCausalLM
import torch

def calculate_probability(sentence, model_name='gpt2'):
    tokenizer = AutoTokenizer.from_pretrained(model_name)
    model = AutoModelForCausalLM.from_pretrained(model_name)
    inputs = tokenizer(sentence, return_tensors='pt')
    with torch.no_grad():
        loss = model(**inputs, labels=inputs['input_ids']).loss
    return torch.exp(-loss).item()

# Example usage
sentence = "Hello, how are you today?"
print(f"Probability: {calculate_probability(sentence):.10f}")
 
Last edited:
Another note, I'm pretty sure all ChatGPT (3 and up) AI detectors as of present day are bullshit. Because the models aren't public. That doesn't mean you can't create your own, but it wouldn't be nearly as accurate as the real deal unless you have a ton of training data.
You need to have the source models for genuine results.
 
For me to make money easily in 2024-2025, choose a method that aligns with your skills, interests, and available time. The most successful ventures often involve a combination of passion, persistence, and adaptability.
 
For me to make money easily in 2024-2025, choose a method that aligns with your skills, interests, and available time. The most successful ventures often involve a combination of passion, persistence, and adaptability.
Ok Chat GPT
 
Scammer shared zero demand, expected.

I will give you a gem just because I can

You can copy #1 site content and rank above them without using BH

O yeah
 
Back
Top
AdBlock Detected

We get it, advertisements are annoying!

Sure, ad-blocking software does a great job at blocking ads, but it also blocks useful features and essential functions on BlackHatWorld and other forums. These functions are unrelated to ads, such as internal links and images. For the best site experience please disable your AdBlocker.

I've Disabled AdBlock