| This topic was locked 4th Mar 08 at 11:41pm by Ross |
Nick Very Senior Member
    
![[Avatar]](http://uploads.vforums.co.uk/forums/support/f_5e7b1402b305d883af97446b2fedc6c2_1-eog.jpeg) Posts: 3,013 Status: Offline Gender: Male Location: vForums Age: 35 Joined:
pmwww | |
Tim Senior Member
    banned.
![[Avatar]](http://uploads.virtualforums.co.uk/forums/support/1beast10-2s9.jpeg) The only easy day was yesterday. Posts: 698 Status: Offline Gender: Male Location: Under your bed..in your closet..in your head Age: 34 Joined:
pmmsn | | Re: Spam :( (4th Mar 08 at 9:30pm UTC) | | I had one of thoes on my site, It's a forum bot.
As for getting it's IP, i'm not sure. | |
|
|
Nick Very Senior Member
    
![[Avatar]](http://uploads.vforums.co.uk/forums/support/f_5e7b1402b305d883af97446b2fedc6c2_1-eog.jpeg) Posts: 3,013 Status: Offline Gender: Male Location: vForums Age: 35 Joined:
pmwww | | Re: Spam :( (4th Mar 08 at 9:31pm UTC) | | The ip at the bottom of the posts was already suggested, but not yet implemented, it should be so we can ban guest spammers | |
|
Tim Senior Member
    banned.
![[Avatar]](http://uploads.virtualforums.co.uk/forums/support/1beast10-2s9.jpeg) The only easy day was yesterday. Posts: 698 Status: Offline Gender: Male Location: Under your bed..in your closet..in your head Age: 34 Joined:
pmmsn | | Re: Spam :( (4th Mar 08 at 9:32pm UTC) | | | You can also set your forum so guest can't post, and force people who wish to affiliate to register. | |
|
|
Nick Very Senior Member
    
![[Avatar]](http://uploads.vforums.co.uk/forums/support/f_5e7b1402b305d883af97446b2fedc6c2_1-eog.jpeg) Posts: 3,013 Status: Offline Gender: Male Location: vForums Age: 35 Joined:
pmwww | | Re: Spam :( (4th Mar 08 at 9:36pm UTC) | | | I did that before, and no one joined, and some did, but then didn't do a thing, so its free to public. on that forum I don't care about getting members, its just a place were people can advertise their sites. But if a bot comes in and spams up the forum, who wants to advertised on a spam infested forum? then they advertise their forum and the spam bot recognizes the advertised forum it will go to theirs and advertise, and it will be an on going thing. I know I can deleted the post, but in order to prevent it to happen I need to ban the ip. | |
|
Tim Senior Member
    banned.
![[Avatar]](http://uploads.virtualforums.co.uk/forums/support/1beast10-2s9.jpeg) The only easy day was yesterday. Posts: 698 Status: Offline Gender: Male Location: Under your bed..in your closet..in your head Age: 34 Joined:
pmmsn | | Re: Spam :( (4th Mar 08 at 9:46pm UTC) | | Maybe Ross can do something, i'm not sure.
lets wait for him | |
|
|
Nick Very Senior Member
    
![[Avatar]](http://uploads.vforums.co.uk/forums/support/f_5e7b1402b305d883af97446b2fedc6c2_1-eog.jpeg) Posts: 3,013 Status: Offline Gender: Male Location: vForums Age: 35 Joined:
pmwww | | Re: Spam :( (4th Mar 08 at 9:50pm UTC) | | | yes lets. | |
|
Ross Administrator
    
![[Avatar]](http://uploads.virtualforums.co.uk/forums/pokemon/vforums-qr1.png) Posts: 3,709 Status: Offline Gender: Male Age: 9 1⁄2 Joined:
Additional Groups: Support Team
  
pmwwwgtalkvForum | | Re: Spam :( (4th Mar 08 at 10:34pm UTC) | | | Just delete the post. It's unlikely that the same bot will post at the same forum twice via the same IP address. As mentionned, IP logging will soon be implemented on all posts and if bots like this continue to bypass current validation then additional checks will be put in place for guest posts. | |
|
|
dog199200 Guest | | Re: Spam :( (4th Mar 08 at 11:04pm UTC) | | umm why not try to get the An Attempt At Anti-Spam Bot Situation for proboards converted:
 Code: - <script type="text/javascript">
- <!--
- /* An Attempt At Anti-Spam Bot Situation
- By {XF}Äs$@§sîñ™, http://www.xf-clan.net
- Code from http://www.utopiangfx.proboards56.com/index.cgi
- This Header Stays Intact */
-
- // List all the characters you wish to use
- var charsToUse = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
-
- var sMax = "8"; // Number of security letters to print
-
- var sColor = "CD3333"; // The color of the code when it is given to the Guest when posting
-
- function returnCode() {
- var lCounter = 0;
- var storeData = '';
- while (lCounter != sMax) {
- storeData += charsToUse.charAt(Math.floor(Math.random() * (charsToUse.length-1)));
- lCounter++;
- }
- return storeData;
- }
-
- if (pb_username.match(/Guest/) && document.postForm) {
- var tRow = document.postForm.message.parentNode.parentNode.parentNode;
- var firstCell = tRow.parentNode.insertRow(tRow.rowIndex+1).insertCell(0);
- firstCell.className = "windowbg";
- var subHeader = document.createElement("font");
- subHeader.style.fontSize = "12px";
- subHeader.appendChild(document.createTextNode("Anti-Spam Code:"));
- firstCell.appendChild(subHeader);
- var secondCell = firstCell.parentNode.insertCell(1);
- secondCell.className = "windowbg";
- var cDesc = document.createElement("font");
- cDesc.style.fontSize = "10px";
- cDesc.appendChild(document.createTextNode("The following code needs to be inputted below: "));
- secondCell.appendChild(cDesc);
- var spamCode = document.createElement("span");
- spamCode.setAttribute("id", "antiSpamCode");
- spamCode.style.fontSize = "10px";
- spamCode.style.fontWeight = "bold";
- spamCode.style.color = sColor;
- secondCell.appendChild(spamCode);
- secondCell.appendChild(document.createElement("br"));
- var cCode = cDesc.cloneNode(false);
- cCode.appendChild(document.createTextNode("Please enter the Anti-Spam code (The Anti-Spam code is case sensitive): "));
- secondCell.appendChild(cCode);
- var cField = document.createElement("input");
- cField.setAttribute("id", "antiSpamCodeInput");
- cField.setAttribute("size", "10");
- cField.setAttribute("maxLength", sMax);
- secondCell.appendChild(cField);
- cField.style.marginTop = "5px";
-
- document.postForm.onsubmit = function() {
- var c = document.getElementById("antiSpamCodeInput").value;
- if (c == "" || c != document.getElementById("antiSpamCode").firstChild.data) {
- alert("The Anti-Spam Code which you have given is invalid. Please enter again. Thank You.");
- return false;
- }
- }
-
- window.onload = function() {
- document.getElementById("antiSpamCode").appendChild(document.createTextNode(returnCode()));
- }
- }
- //-->
- </script>
| |
|
Cryhavoc_ Full Member
  
Just do it. Posts: 238 Status: Offline Gender: Male Location: The wrong way. Age: 33 Joined:
pm | | Re: Spam :( (4th Mar 08 at 11:10pm UTC) | | Dwight, he isn't trying to control the situation - he has already passed that stage.
Besides, Assasin's code isn't going to stop a human being, and I doubt that what caused the spam is a bot. | |
|
|
Ross Administrator
    
![[Avatar]](http://uploads.virtualforums.co.uk/forums/pokemon/vforums-qr1.png) Posts: 3,709 Status: Offline Gender: Male Age: 9 1⁄2 Joined:
Additional Groups: Support Team
  
pmwwwgtalkvForum | | Re: Spam :( (4th Mar 08 at 11:12pm UTC) | | | That code does nothing. If the creator knew anything about spam bots they would have realized that they don't interpret javascript and as such no javascript based code will affect them. | |
|
|
dog199200 Guest | | Re: Spam :( (4th Mar 08 at 11:39pm UTC) | | | well for proboards it works.....i had a lot of bot problems and they stopped when i used that code...and that donesn't seem like a person doing that, it looks more like a bot because how it spams... | |
|
Ross Administrator
    
![[Avatar]](http://uploads.virtualforums.co.uk/forums/pokemon/vforums-qr1.png) Posts: 3,709 Status: Offline Gender: Male Age: 9 1⁄2 Joined:
Additional Groups: Support Team
  
pmwwwgtalkvForum | | Re: Spam :( (4th Mar 08 at 11:41pm UTC) | | I will repeat it again, a javascript code cannot stop a bot from posting. It's more than likely a system chage which stopped it if it were a bot or it was a person pretending to be a bot.
 | |
|
|