This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ################################################ | |
| # $Id: bvrppop3.py 2019-11-30 00:00 @SrV1n11 $ # | |
| ################################################ | |
| ############### | |
| # This file is an exploit for the POP3 service by BVRP software | |
| # and has compatibility with Windows Service Pack 3 (checked) | Linux (not checked) | |
| ############## | |
| import socket,sys |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from datetime import datetime | |
| now = datetime.now() | |
| print("Put your birth day, month, and year (separated using '/')") | |
| insert_day = input("--> ") | |
| day = insert_day.replace('/','') | |
| value_day = day[0] | |
| value_day = value_day + day[1] | |
| month = day[2] | |
| month = month + day[3] | |
| year = day[4] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import argparse | |
| import socket | |
| from os import system | |
| import sys,platform | |
| green = "\033[0;32m" | |
| red = "\033[0;31m" | |
| default = "\033[0m" | |
| gray = "\033[0;37m" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- encoding: utf-8 -*- | |
| x = int(input("Entre com o valor: ")) | |
| valor = int(input("Até: ")) | |
| n = 0 | |
| y = 0 | |
| while n <= valor: | |
| print("%d * %d = %d" %(x, y, x * y)) | |
| n = n + 1 | |
| y = y +1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| main(){ | |
| echo "Cadastrador de Usuários - ZION" | |
| echo "1 - Cadastro de Usuário" | |
| echo "2 - Cadastro de Grupo" | |
| echo "3 - Mover usuário para algum grupo" | |
| read escolha; | |
| clear | |
| if [ $escolha == 1 ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- encoding: utf-8 -*- | |
| min = int(input("Minutos falados: ")) | |
| if min > 200: | |
| if min <= 400: | |
| preco = min * 0.18 | |
| if min >= 400 and min < 800: | |
| preco = min * 0.15 | |
| else: | |
| preco = min * 0.08 | |
| else: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- coding: utf-8 -*- | |
| velocidade = int(input("Digite sua velocidade: ")) | |
| multa = 0 | |
| if velocidade > 110: | |
| print("Você foi multado\n") | |
| multa = velocidade - 110 | |
| multa = multa * 5 | |
| print('Valor da multa: R$ %d,00' %multa) | |
| if velocidade <= 110: | |
| print("Você não foi multado") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| #include <stdlib.h> | |
| int main(){ | |
| float media; | |
| printf("Digite a media: "); | |
| scanf("%f", &media); |