๐š‚๐š‘๐šŠ๐š๐š˜๐š  ๐™ฝ๐šŽ๐š
202 subscribers
3 photos
8 videos
9 files
14 links
๐Ÿ”ฐ Educational & Research Only

Ethical Cybersecurity โ€ข Learning โ€ข Research

๐Ÿ’ก Knowledge is Power

๐Ÿšซ No Illegal Activities
โš ๏ธ Any misuse of the shared content or tools is solely the user's responsibility.

OWNER :- @maxcxt
Download Telegram
๐ŸŒฟ เคชเฅเคฐเคฅเคฎ เคธเคพเคตเคจ เคธเฅ‹เคฎเคตเคพเคฐ เค•เฅ€ เคนเคพเคฐเฅเคฆเคฟเค• เคถเฅเคญเค•เคพเคฎเคจเคพเคเค! ๐Ÿ•‰๏ธ

เฅ เคจเคฎเคƒ เคถเคฟเคตเคพเคฏเฅค
"เคถเคฟเคตเค‚ เคถเคพเคจเฅเคคเค‚ เคœเค—เคจเฅเคจเคพเคฅเค‚ เคฒเฅ‹เค•เคพเคจเฅเค—เฅเคฐเคนเค•เคพเคฐเค•เคฎเฅเฅค

เคญเค•เฅเคคเคพเคญเฅ€เคทเฅเคŸเคชเฅเคฐเคฆเค‚ เคฆเฅ‡เคตเค‚ เคตเคจเฅเคฆเฅ‡เคฝเคนเค‚ เคถเค™เฅเค•เคฐเค‚ เคถเคฟเคตเคฎเฅเฅฅ"
เคนเคฐ เคนเคฐ เคฎเคนเคพเคฆเฅ‡เคต! ๐Ÿ”ฑ

เคญเค—เคตเคพเคจ เคถเคฟเคต เค†เคช เคธเคญเฅ€ เค•เฅ‡ เคœเฅ€เคตเคจ เคฎเฅ‡เค‚ เคธเฅเค–, เคถเคพเค‚เคคเคฟ, เค‰เคคเฅเคคเคฎ เคธเฅเคตเคพเคธเฅเคฅเฅเคฏ, เคธเคซเคฒเคคเคพ เค”เคฐ เคธเค•เคพเคฐเคพเคคเฅเคฎเค• เคŠเคฐเฅเคœเคพ เค•เคพ เคธเค‚เคšเคพเคฐ เค•เคฐเฅ‡เค‚เฅค

เคธเคพเคตเคจ เค•เคพ เคฏเคน เคชเคพเคตเคจ เคธเฅ‹เคฎเคตเคพเคฐ เค†เคช เคธเคญเฅ€ เค•เฅ‡ เคฒเคฟเค เคฎเค‚เค—เคฒเคฎเคฏ เคนเฅ‹เฅค
๐ŸŒธ
Please open Telegram to view this post
VIEW IN TELEGRAM
โค2
1. Recon-ng โ€” All-in-one OSINT framework.
๐Ÿ”— https://github.com/lanmaster53/recon-ng

2. SpiderFoot โ€” Automated OSINT scanner.
๐Ÿ”— https://github.com/smicallef/spiderfoot

3. Sherlock โ€” Username search tool for multiple websites.
๐Ÿ”— https://github.com/sherlock-project/sherlock

4. Amass โ€” Subdomain enumeration tool.
๐Ÿ”— https://github.com/owasp-amass/amass

5. OSINT Framework โ€” Collection of OSINT resources.
๐Ÿ”— https://osintframework.com

6. Bettercap โ€” Network monitoring and assessment framework.
๐Ÿ”— https://github.com/bettercap/bettercap

7. Angry IP Scanner โ€” Fast IP and network scanner.
๐Ÿ”— https://angryip.org

8. mtr โ€” Network route analysis tool.
๐Ÿ”— https://github.com/traviscross/mtr

9. Tails OS โ€” Privacy-focused operating system using Tor.
๐Ÿ”— https://tails.net

10. Mullvad VPN โ€” Privacy-focused VPN service.
๐Ÿ”— https://mullvad.net/en

Credit: @ShadowNetco
https://www.torry.io/ai/chat

๐Ÿ’ป This is Torry Ai - Fully Private And Uncensored ๐Ÿ’ป

๐ŸŒ Generate Uncensored Images, Roleplay, 10-
+ Characters Etc
Please open Telegram to view this post
VIEW IN TELEGRAM
โค1
Pinterest Image Search TBL Code
Api - https://pinterest-api-bay.vercel.app/example/docs

Command -
/search

Wait for answer: On โœ…
TBL -
let query = message

if (!query) {
  Bot.sendMessage("Please enter a search query.")
  return
}

User.set("q", query, "string")

let res = await HTTP.post({
  url: "https://pinterest-api-bay.vercel.app/v5/pins/search",
  body: {
    query: query,
    count: 10,
    compact: true
  }
})

if (!res.ok) {
  Bot.sendMessage("Request failed. Please try again later.")
  return
}

let data

try {
  data = res.data
} catch (e) {
  Bot.sendMessage("Failed to parse response.")
  return
}

if (!data.items || data.items.length === 0) {
  Bot.sendMessage("No results found.")
  return
}

let savedQuery = User.get("q") || "Result"
let botName = bot.name

for (let i = 0; i < data.items.length; i++) {
  let item = data.items[i]

  let title = item.title ? item.title : savedQuery
  let image = item.image
  let link = item.url ? item.url : ""

  let buttons = []

  if (link) {
    buttons.push([{ text: "View on Pinterest", url: link }])
  }

  buttons.push([{ text: "Copy Image URL", copy_text: { text: image } }])

  let caption =
    "<b>" + title + "</b>\n" +
    "<i>Query:</i> " + savedQuery + "\n" +
    "<i>Searched by:</i> @" + botName

  await Api.sendPhoto({
    chat_id: user.telegramid,
    photo: image,
    caption: caption,
    parse_mode: "HTML",
    disable_web_page_preview: true,
    reply_markup: {
      inline_keyboard: buttons
    }
  })
}

Provided by ~ ADIXTPY
Forwarded from Telegram Janta Hacker (๐™‰๐™š๐™ญ๐™ช๐™จ ๐™Ž๐™๐™–๐™™๐™ค๐™ฌ)
๐Ÿช™ Looking for Highly Skilled Peoples for Every Fields and free Stuff From Every Stuff ๐Ÿช™

๐Ÿ•ท Message with Your Skills and with some valid Proof ๐Ÿ•ท

Dm @AccountFucked ๐Ÿ˜ˆ
Please open Telegram to view this post
VIEW IN TELEGRAM
๐Ÿšจ SCAM ALERT โ€” IMPORTANT ๐Ÿšจ
โš ๏ธ @MaxxxOwner is NOT me.
This person is impersonating me and may try to scam people using my name.
โŒ DO NOT BUY ANYTHING FROM @MaxxxOwner.
โŒ Do not send them money or personal information.
โŒ Do not trust any claims that they are me or represent me.
If you see this account, report and block it immediately. Stay alert and verify before making any payment.
๐Ÿ›ก Official warning: @MaxxxOwner is a scammer impersonating my identity.
โค2
๐Ÿ“ข Looking for Someone to Manage Telegram DMs

If anyone is interested in working with me, DM me.

The work is simple. Iโ€™ll give you a Telegram ID, and youโ€™ll have to manage the people who contact that ID.

Your responsibilities:
โ€ข Reply to incoming messages
โ€ข Deal with the people who contact the ID
โ€ข Handle basic conversations professionally
โ€ข Keep me updated about important messages and deals
โ€ข Iโ€™ll provide all the necessary details and information

You can also earn a commission based on the work/deals you handle.

If youโ€™re interested, DM me for more details.

@snmaxc
๐Ÿ’˜1