MCPcopy Create free account
hub / github.com/d3vilbug/HackBar / prompt_and_validate_input

Method prompt_and_validate_input

src/main/java/burp/Methods.java:45–51  ·  view source on GitHub ↗
(String prompt, String str)

Source from the content-addressed store, hash-verified

43
44
45 public static String prompt_and_validate_input(String prompt, String str){
46 String user_input = JOptionPane.showInputDialog(prompt, str);
47 while(user_input.trim().equals("")){
48 user_input = JOptionPane.showInputDialog(prompt, str);
49 }
50 return user_input.trim();
51 }
52
53 public static byte[] do_modify_request(byte[] request, int[] selectedIndex, String modifiedString){
54 byte[] modString = modifiedString.getBytes();

Callers 4

do_SQL_ErrorMethod · 0.95
do_LFIMethod · 0.95
do_sql_opMethod · 0.95
do_ReverseShellMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected