Example
#{example}"); ipb.editor_values.get('templates')['togglesource'] = new Template(""); ipb.editor_values.get('templates')['toolbar'] = new Template(""); ipb.editor_values.get('templates')['button'] = new Template("
Emoticons
"); // Add smilies into the mix ipb.editor_values.set( 'show_emoticon_link', false ); ipb.editor_values.set( 'bbcodes', $H({"snapback":{"id":"1","title":"Post Snap Back","desc":"This tag displays a little linked image which links back to a post - used when quoting posts from the board. Opens in same window by default.","tag":"snapback","useoption":"0","example":"[snapback]100[/snapback]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"topic":{"id":"5","title":"Topic Link","desc":"This tag provides an easy way to link to a topic","tag":"topic","useoption":"1","example":"[topic=1]Click me![/topic]","switch_option":"0","menu_option_text":"Enter the topic ID","menu_content_text":"Enter the title for this link","single_tag":"0","optional_option":"0","image":""},"post":{"id":"6","title":"Post Link","desc":"This tag provides an easy way to link to a post.","tag":"post","useoption":"1","example":"[post=1]Click me![/post]","switch_option":"0","menu_option_text":"Enter the Post ID","menu_content_text":"Enter the title for this link","single_tag":"0","optional_option":"0","image":""},"spoiler":{"id":"7","title":"Spoiler","desc":"Spoiler tag","tag":"spoiler","useoption":"0","example":"[spoiler]Some hidden text[/spoiler]","switch_option":"0","menu_option_text":"","menu_content_text":"Enter the text to be masked","single_tag":"0","optional_option":"0","image":""},"acronym":{"id":"8","title":"Acronym","desc":"Allows you to make an acronym that will display a description when moused over","tag":"acronym","useoption":"1","example":"[acronym='Laugh Out Loud']lol[/acronym]","switch_option":"0","menu_option_text":"Enter the description for this acronym (EG: Laugh Out Loud)","menu_content_text":"Enter the acronym (EG: lol)","single_tag":"0","optional_option":"0","image":""},"hr":{"id":"12","title":"Horizontal Rule","desc":"Adds a horizontal rule to separate text","tag":"hr","useoption":"0","example":"[hr]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"1","optional_option":"0","image":""},"php":{"id":"14","title":"PHP Code","desc":"Allows you to enter PHP code into a formatted/highlighted syntax box","tag":"php","useoption":"0","example":"[php]$variable = true;\n\nprint_r($variable);[/php]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"html":{"id":"15","title":"HTML Code","desc":"Allows you to enter formatted/syntax-highlighted HTML code","tag":"html","useoption":"0","example":"[html]\n \n[/html]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"sql":{"id":"16","title":"SQL Code","desc":"Allows you to enter formatted/syntax-highlighted SQL code","tag":"sql","useoption":"0","example":"[sql]SELECT p.*, t.* FROM posts p LEFT JOIN topics t ON t.tid=p.topic_id WHERE t.tid=7[/sql]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"xml":{"id":"17","title":"XML Code","desc":"Allows you to enter formatted/syntax-highlighted XML code","tag":"xml","useoption":"0","example":"[xml]3 Replies - 58 Views - Last Post: Today, 01:58 PM
#1
Reputation: 0
- Posts: 2
- Joined: Today, 09:16 AM
Posted Today, 09:26 AM
Hi everybody.....;this is my working codes for phishing websites....;
It is work perfect But when I try to add extra element to the array it doesn't work...
Hope you figer the problem...........
package vh; import java.io.BufferedReader; import java.io.FileReader; import java.util.ArrayList; import java.util.HashMap; public class PhishingScanner { private static final int phishingWordsCount[] = new int [30]; private static final String[] phishingWords = { "amazon", "official", "bank", "security", "urgent", "alert", "important", "information", "ebay", "password", "credit", "verify", "confirm", "account", "bill", "immediately", "address", "telephone", "ssn", "charity", "check", "secure", "personal", "confidential", "atm", "warning", "fraud", "citibank", "irs", "paypal" }; private static final int phishingPoints[] = { 2, 2, 1, 1, 1, 1, 1, 2, 3, 3, 3, 1, 1, 1, 1, 1, 2, 2, 3, 2, 1, 1, 1, 1, 2, 2, 2, 2, 2, 1 }; //String used for testing the wordTest() //private static String[] testWords = {"thanks", "amazon", "paypal", "bank", "amazon"}; public static void main(String[] args) { readFile(); //used for testing the wordTest() not used in final application //wordTest(testWords); } public static void wordTest(String[] testWords) { int total = 0; for(int j = 0; j < testWords.length; j++) { for(int i = 0; i < phishingWords.length; i++) { if(testWords[j].equals(phishingWords[i])) { ++phishingWordsCount[i]; total += phishingPoints[i]; } } } System.out.printf("%-15s%-10s%s\n","Word", "Count", "Points\n"); for (int k = 0; k < phishingWords.length; k++) { System.out.printf("%-15s%-10s%s\n", phishingWords[k] , phishingWordsCount[k], phishingPoints[k]); } System.out.println("Total points: " + total); } private static void readFile() { ArrayList<String> textFileWords = new ArrayList<String>(); try { BufferedReader br = new BufferedReader(new FileReader("c:\\test\\test.txt")); String str = ""; String st; while ((st = br.readLine()) != null) { str += st + " "; } HashMap<String, Integer> map = new HashMap<String, Integer>(); str = str.toLowerCase(); //^^/> reads and converts the entire file into a single lowercase string int count = -1; for (int i = 0; i < str.length(); i++) { if ((!Character.isLetter(str.charAt(i))) || (i + 1 == str.length())) { if (i - count > 1) { if (Character.isLetter(str.charAt(i))) { i++; } String word = str.substring(count + 1, i); if (map.containsKey(word)) { map.put(word, map.get(word) + 1); } else { map.put(word, 1); } textFileWords.add(word); //^^/> Reads each word and puts it into the textFileWords Array List } count = i; } } } catch (Exception e) { System.out.println(e); } String[] testWords = new String[textFileWords.size()]; testWords = textFileWords.toArray(testWords); wordTest(testWords); } }
Is This A Good Question/Topic? 0
Replies To: Arayy doesn't work in My Phishing program
#2
Reputation: 6399
- Posts: 23,255
- Joined: 12-June 08
Re: Arayy doesn't work in My Phishing program
Posted Today, 09:28 AM
Interesting app - what's the gist? You enter a site and it tries to approximate some probability on it being a phishing site?
#3
Reputation: 0
- Posts: 2
- Joined: Today, 09:16 AM
Re: Arayy doesn't work in My Phishing program
Posted Today, 09:54 AM
The program should check if the website cloud be a phishing website ......
the result give you a no. of how much the site has alert to be phishing website
#4
Reputation: 8005
- Posts: 31,089
- Joined: 06-March 08
Re: Arayy doesn't work in My Phishing program
Posted Today, 01:58 PM
JavaHelper, on 13 May 2013 - 12:26 PM, said:
when I try to add extra element to the array it doesn't work...
which means ?
Page 1 of 1
Source: http://www.dreamincode.net/forums/topic/320959-arayy-doesnt-work-in-my-phishing-program/
yom kippur avengers soa andy williams andy williams Lady Gaga New Girl
No comments:
Post a Comment