(String str)
| 149 | } |
| 150 | |
| 151 | public static byte[] base64Decode(String str){ |
| 152 | final BASE64Decoder decoder = new BASE64Decoder(); |
| 153 | byte[] byteRes = new byte[]{}; |
| 154 | try { |
| 155 | byteRes = decoder.decodeBuffer(str); |
| 156 | } catch (IOException e) { |
| 157 | BurpExtender.stderr.println("[-] " + e.getMessage()); |
| 158 | } |
| 159 | return byteRes; |
| 160 | } |
| 161 | |
| 162 | public static boolean isURL(String url){ |
| 163 | if (url == null ){ |
no outgoing calls
no test coverage detected