SearchSearch CalendarCalendar GalleryGalleryAuction-PortalAuctions GlobalGlobal Top-ListTopMembersMembers StatisticsStats
get your RSS-Feed
Language/Sprache:  Admin  
 Login: ChatChat (0) new User-MapUser-Mapsend Passwordsend Password RegisterRegister

Forum Overview » Hacxx » Tricks » Chatgpt prompt: Hacxx RSS Obtainer
Pages: (1) [1] »
Registration necessaryRegistration necessary
Chatgpt prompt: Hacxx RSS Obtainer
hacxxno Access no Access first Post cannot be deleted -> delete the whole Topic 
Group: Administrator
Level:


Posts: 367
Joined: 7/8/2026
IP-Address: saved
offline


Chatgpt prompt: Hacxx RSS Obtainer

Fix this code, I want to parse the domain on multiple filepaths and get the rss content. All in js. user write a domain and the script return on output_div the full path if it found the rss

<div id="output_div"></div>
<script>
var keyword = prompt("Type the forum domain:", "");

var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function() {
if (this.readyState == 4) {
if (this.status == 200) {
var myObj = JSON.parse(this.responseText);
var output = '';
for (x in myObj.items) {
output += '<p>' + myObj.items[x].title + '<br><a href="' + myObj.items[x].link + '" target="_blank">Click here to view...</a></p>';
}
document.getElementById('output_div').innerHTML = output;
} else if (this.status == 0) {
document.getElementById('output_div').innerHTML = '#';
} else if (this.status == 404) {
document.getElementById('output_div').innerHTML = '#';
} else if (this.status == 500) {
document.getElementById('output_div').innerHTML = 'Error 500: Internal Server Error';
} else if (this.status == 429) {
document.getElementById('output_div').innerHTML = 'Error 429: Too Many Requests';
} else {
document.getElementById('output_div').innerHTML = 'An error occurred. Status code: ' + this.status;
}
}
};
xmlhttp.open("GET", "https://api.rss2json.com/v1/api.json?rss_url=https://"+keyword+"/syndication.php?limit=15", true);
xmlhttp.open("GET", "https://api.rss2json.com/v1/api.json?rss_url=https://"+keyword+"/forums/-/index.rss", true);
xmlhttp.open("GET", "https://api.rss2json.com/v1/api.json?rss_url=https://"+keyword+"/discover/1.xml/", true);
xmlhttp.open("GET", "https://api.rss2json.com/v1/api.json?rss_url=https://"+keyword+"/feed/", true);
xmlhttp.open("GET", "https://api.rss2json.com/v1/api.json?rss_url=https://"+keyword+"/feed.php", true);
xmlhttp.open("GET", "https://api.rss2json.com/v1/api.json?rss_url=http://"+keyword+"/forum/external.php", true);
xmlhttp.open("GET", "https://api.rss2json.com/v1/api.json?rss_url=https://"+keyword+"/community/external.php", true);
xmlhttp.open("GET", "https://api.rss2json.com/v1/api.json?rss_url=https://"+keyword+"/discover/all.xml/", true);
xmlhttp.send();
</script>



8/28/2026 2:35:07 PM   
Registration necessaryRegistration necessary
Pages: (1) [1] »
all Times are GMT +1:00
Thread-Info
AccessModerators
Reading: all
Writing: all
Group: general
none
Forum Overview » Hacxx » Tricks » Chatgpt prompt: Hacxx RSS Obtainer

.: Script-Time: 0.031 || SQL-Queries: 7 || Active-Users: 2,690 :.
Powered by ASP-FastBoard HE v0.8, hosted by cyberlord.at