MCPcopy Create free account
hub / github.com/c0ny1/captcha-killer / base64Decode

Method base64Decode

src/main/java/utils/Util.java:151–160  ·  view source on GitHub ↗
(String str)

Source from the content-addressed store, hash-verified

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 ){

Callers 3

parseAllLableMethod · 0.80
encdoeLableMethod · 0.80
mainMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected