mirror of
https://github.com/danielmiessler/SecLists.git
synced 2026-09-01 04:15:45 +00:00
Merge branch 'master' into sync
This commit is contained in:
@@ -7,20 +7,12 @@ from decimal import Decimal
|
||||
|
||||
print("[+] Readme stats updater")
|
||||
|
||||
# Constants
|
||||
CONNECTION_SPEED_MBPS = 50 # Change this to set a different cloning speed (in Mbps)
|
||||
REPOSITORY_API="https://api.github.com/repos/%s"
|
||||
REPOSITORY="danielmiessler/SecLists"
|
||||
DETAILS_ANCHOR="<!--- details anchor -->"
|
||||
DETAILS_ANCHOR_REGEX=r"%s.*?%s"%(DETAILS_ANCHOR,DETAILS_ANCHOR)
|
||||
COMMIT_MESSAGE="[Github Action] Automated readme update."
|
||||
DETAIL_USER_NOTICE_STRING="""%s
|
||||
|
||||
### Repository details
|
||||
|
||||
Size of a complete clone of SecLists is currently at `%s`
|
||||
|
||||
Cloning this repository should take %i-%i minutes at 5MB/s speeds.
|
||||
|
||||
%s"""
|
||||
BADGE_REGEX=r"!\[Approx cloning time\]\(https://img\.shields\.io/badge/.*?\)"
|
||||
BADGE_TEMPLATE = f""
|
||||
ERROR_STRING="::error file=%s,line=%s,col=%s,endColumn=%s::%s"
|
||||
|
||||
def print_err(file,msg,line=1,col=1,endcol=1):
|
||||
@@ -28,30 +20,38 @@ def print_err(file,msg,line=1,col=1,endcol=1):
|
||||
|
||||
size=requests.get(REPOSITORY_API%(REPOSITORY)).json()['size'] # Its in kb
|
||||
|
||||
suffixes=['MB','GB','TB']
|
||||
final_size=[str(size),"","KB"]
|
||||
# Calculate size in MB
|
||||
size_mb = Decimal(size) / 1024
|
||||
|
||||
for i in suffixes:
|
||||
if len(final_size[0])>3:
|
||||
# Calculate cloning time for the defined connection speed (convert size to bits)
|
||||
cloning_time_seconds = int((size_mb * 8) / CONNECTION_SPEED_MBPS)
|
||||
|
||||
final_size[1]=final_size[0][-3:]+final_size[1]
|
||||
final_size[0]=final_size[0][:-3]
|
||||
final_size[2]=i
|
||||
# Cloning time seconds to minutes and seconds
|
||||
minutes = cloning_time_seconds // 60
|
||||
seconds = cloning_time_seconds % 60
|
||||
|
||||
final_size="%s %s"%(str(round(Decimal('.'.join(final_size[:2])),1)),final_size[2])
|
||||
if minutes > 0:
|
||||
cloning_time = f"{minutes}m%20{seconds}s"
|
||||
else:
|
||||
cloning_time = f"{seconds}s"
|
||||
|
||||
eta_lower_bound=int(str(size/5000/60).split('.')[0]) # Get whole number after decimal point
|
||||
eta_upper_bound=eta_lower_bound+1
|
||||
|
||||
DETAIL_USER_NOTICE_STRING=DETAIL_USER_NOTICE_STRING%(DETAILS_ANCHOR,final_size,eta_lower_bound,eta_upper_bound,DETAILS_ANCHOR)
|
||||
# New badge string
|
||||
approx_cloning_time_badge = BADGE_TEMPLATE % (cloning_time, CONNECTION_SPEED_MBPS)
|
||||
|
||||
readme_contents=open("README.md").read()
|
||||
|
||||
if not re.search(DETAILS_ANCHOR_REGEX,readme_contents,flags=re.DOTALL):
|
||||
print_err("README.md", "[!] Error: No details anchor found!")
|
||||
if not re.search(BADGE_REGEX,readme_contents,flags=re.DOTALL):
|
||||
print_err("README.md", "[!] Error: No approx cloning time badge found!")
|
||||
exit(2)
|
||||
|
||||
readme_contents=re.sub(DETAILS_ANCHOR_REGEX,DETAIL_USER_NOTICE_STRING,readme_contents,count=1,flags=re.DOTALL)
|
||||
open("README.md","w").write(readme_contents)
|
||||
# Update the badge in the README.md content
|
||||
new_readme_content = re.sub(
|
||||
BADGE_REGEX,
|
||||
approx_cloning_time_badge,
|
||||
readme_contents,
|
||||
count=1
|
||||
)
|
||||
|
||||
print("[+] Wrote README.md!")
|
||||
open("README.md","w").write(new_readme_content)
|
||||
|
||||
print(f"[+] Updated README.md with new cloning time badge at {CONNECTION_SPEED_MBPS}Mb/s!")
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"Jwt secrets update": {
|
||||
"last_update": 1734634998
|
||||
"last_update": 1737745396
|
||||
},
|
||||
"Trickest wordlist update": {
|
||||
"last_update": 1734602635
|
||||
"last_update": 1737713049
|
||||
}
|
||||
}
|
||||
@@ -1,19 +1,7 @@
|
||||
---
|
||||
name: 'Pull request'
|
||||
about: 'Create a pull request to improve SecLists'
|
||||
title: '[Pull request]: '
|
||||
labels: 'enhancement'
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
<!--- IMPORTANT --->
|
||||
<!--- Please make sure you've checked the CONTRIBUTING.md before creating a pull-request: https://github.com/danielmiessler/SecLists/blob/master/CONTRIBUTING.md -->
|
||||
<!--- IMPORTANT --->
|
||||
|
||||
**Describe the added commits**
|
||||
<!--- A clear and concise description of what is being added to the repository. -->
|
||||
|
||||
**Purpose of pull request**
|
||||
<!--- Tell us what made you decide to open a pull request. --->
|
||||
<!--- If you added a wordlist, describe what it could be used for --->
|
||||
@@ -22,5 +10,5 @@ assignees: ''
|
||||
<!--- Put/link the source here. -->
|
||||
|
||||
**Additional context**
|
||||
<!--- Add any other context about the problem/missing feature that you are fixing/solving here.
|
||||
Tag the issue here if applicable. -->
|
||||
<!--- Add any other context about the problem/missing feature that you are fixing/solving here. -->
|
||||
<!--- Tag the issue here if applicable. -->
|
||||
|
||||
+5
-21
@@ -1,29 +1,13 @@
|
||||
# DNS discovery wordlists
|
||||
## combined_subdomains
|
||||
|
||||
## combined_subdomains.txt
|
||||
|
||||
### Overview
|
||||
This wordlist is a combination of the following wordlists with a few subdomains added:
|
||||
- bitquark-subdomains-top100000.txt
|
||||
- shubs-subdomains.txt
|
||||
- subdomains-top1million-110000.txt
|
||||
|
||||
### Usage
|
||||
Use for: discovering subdomains
|
||||
## `subdomains-top1million-*`
|
||||
|
||||
### Source
|
||||
This list is automatically updated by a GitHub action whenever any of the lists it's composed by is modified.
|
||||
> [!WARNING]
|
||||
> These wordlists are several years old, they were made in 2015. You will not be able to detect deployments of any services which were invented after 2015 using these wordlists, because their names will not be on the lists.
|
||||
|
||||
## subdomains-top1million-110000.txt
|
||||
|
||||
### Overview
|
||||
These wordlists were [zone-transferred from Amazon's Alexa.com](https://gist.github.com/ethicalhack3r/6145925) in 2015. They are lists of the most used subdomains at the time, as reported by Alexa.com.
|
||||
|
||||
### Usage
|
||||
Use for: discovering subdomains
|
||||
|
||||
### Source
|
||||
Source: https://gist.github.com/ethicalhack3r/6145925
|
||||
|
||||
### References
|
||||
- [Zone Transfer from Alexa.com](https://gist.github.com/ethicalhack3r/6145925)
|
||||
These wordlists were [zone-transfered from Amazon's Alexa.com](https://gist.github.com/ethicalhack3r/6145925) in 2015. They are lists of the most used subdomains at the time, as reported by Alexa.com.
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,180 +1,180 @@
|
||||
.gitattributes
|
||||
bootstrap/app.php
|
||||
database/factories/UserFactory.php
|
||||
database/seeders/DatabaseSeeder.php
|
||||
database/migrations/2014_10_12_000000_create_users_table.php
|
||||
database/migrations/2019_08_19_000000_create_failed_jobs_table.php
|
||||
database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php
|
||||
database/migrations/2014_10_12_100000_create_password_resets_table.php
|
||||
docker-compose.yml
|
||||
packages/.gitkeep
|
||||
LICENSE
|
||||
package.json
|
||||
SECURITY.md
|
||||
composer.json
|
||||
config/shop.php
|
||||
config/services.php
|
||||
config/cache.php
|
||||
config/logging.php
|
||||
config/cors.php
|
||||
config/hashing.php
|
||||
config/view.php
|
||||
config/queue.php
|
||||
config/flare.php
|
||||
config/session.php
|
||||
config/broadcasting.php
|
||||
config/mail.php
|
||||
config/auth.php
|
||||
config/sanctum.php
|
||||
config/database.php
|
||||
config/tinker.php
|
||||
config/ignition.php
|
||||
config/filesystems.php
|
||||
config/app.php
|
||||
phpunit.xml
|
||||
resources/views/welcome.blade.php
|
||||
resources/views/vendor/pagination/simple-default.blade.php
|
||||
resources/views/vendor/pagination/tailwind.blade.php
|
||||
resources/views/vendor/pagination/bootstrap-4.blade.php
|
||||
resources/views/vendor/pagination/default.blade.php
|
||||
resources/views/vendor/pagination/simple-bootstrap-4.blade.php
|
||||
resources/views/vendor/pagination/bootstrap-5.blade.php
|
||||
resources/views/vendor/pagination/simple-tailwind.blade.php
|
||||
resources/views/vendor/pagination/semantic-ui.blade.php
|
||||
resources/views/vendor/pagination/simple-bootstrap-5.blade.php
|
||||
resources/views/vendor/mail/html/panel.blade.php
|
||||
resources/views/vendor/mail/html/header.blade.php
|
||||
resources/views/vendor/mail/html/message.blade.php
|
||||
resources/views/vendor/mail/html/layout.blade.php
|
||||
resources/views/vendor/mail/html/subcopy.blade.php
|
||||
resources/views/vendor/mail/html/table.blade.php
|
||||
resources/views/vendor/mail/html/button.blade.php
|
||||
resources/views/vendor/mail/html/footer.blade.php
|
||||
resources/views/vendor/mail/text/panel.blade.php
|
||||
resources/views/vendor/mail/text/header.blade.php
|
||||
resources/views/vendor/mail/text/message.blade.php
|
||||
resources/views/vendor/mail/text/layout.blade.php
|
||||
resources/views/vendor/mail/text/subcopy.blade.php
|
||||
resources/views/vendor/mail/text/table.blade.php
|
||||
resources/views/vendor/mail/text/button.blade.php
|
||||
resources/views/vendor/mail/text/footer.blade.php
|
||||
resources/views/vendor/notifications/email.blade.php
|
||||
resources/views/dashboard.blade.php
|
||||
resources/views/auth/register.blade.php
|
||||
resources/views/auth/reset-password.blade.php
|
||||
resources/views/auth/forgot-password.blade.php
|
||||
resources/views/auth/verify-email.blade.php
|
||||
resources/views/auth/login.blade.php
|
||||
resources/views/auth/confirm-password.blade.php
|
||||
resources/views/profile/edit.blade.php
|
||||
resources/views/profile/partials/delete-user-form.blade.php
|
||||
resources/views/profile/partials/update-profile-information-form.blade.php
|
||||
resources/views/profile/partials/update-password-form.blade.php
|
||||
resources/views/errors/500.blade.php
|
||||
resources/views/errors/419.blade.php
|
||||
resources/views/errors/403.blade.php
|
||||
resources/views/errors/401.blade.php
|
||||
resources/views/errors/layout.blade.php
|
||||
resources/views/errors/429.blade.php
|
||||
resources/views/errors/503.blade.php
|
||||
resources/views/errors/404.blade.php
|
||||
resources/views/errors/minimal.blade.php
|
||||
resources/views/layouts/app.blade.php
|
||||
resources/views/layouts/guest.blade.php
|
||||
resources/views/layouts/navigation.blade.php
|
||||
resources/views/components/input.blade.php
|
||||
resources/views/components/input-error.blade.php
|
||||
resources/views/components/secondary-button.blade.php
|
||||
resources/views/components/responsive-nav-link.blade.php
|
||||
resources/views/components/primary-button.blade.php
|
||||
resources/views/components/dropdown.blade.php
|
||||
resources/views/components/input-label.blade.php
|
||||
resources/views/components/application-logo.blade.php
|
||||
resources/views/components/modal.blade.php
|
||||
resources/views/components/label.blade.php
|
||||
resources/views/components/auth-session-status.blade.php
|
||||
resources/views/components/dropdown-link.blade.php
|
||||
resources/views/components/danger-button.blade.php
|
||||
resources/views/components/nav-link.blade.php
|
||||
resources/views/components/button.blade.php
|
||||
resources/views/components/auth-validation-errors.blade.php
|
||||
resources/views/components/auth-card.blade.php
|
||||
resources/views/components/text-input.blade.php
|
||||
resources/js/bootstrap.js
|
||||
resources/js/app.js
|
||||
artisan
|
||||
public/build/assets/app-211a03ca.js
|
||||
public/build/manifest.json
|
||||
docker-compose.yml
|
||||
README.md
|
||||
lang/en.json
|
||||
lang/de/passwords.php
|
||||
lang/de/validation.php
|
||||
lang/de/pagination.php
|
||||
lang/de/auth.php
|
||||
lang/en/passwords.php
|
||||
lang/en/validation.php
|
||||
lang/en/pagination.php
|
||||
lang/en/auth.php
|
||||
package.json
|
||||
public/.htaccess
|
||||
public/index.php
|
||||
public/robots.txt
|
||||
public/mix-manifest.json
|
||||
public/build/assets/app-211a03ca.js
|
||||
public/build/manifest.json
|
||||
public/js/app.js
|
||||
public/.htaccess
|
||||
package-lock.json
|
||||
.editorconfig
|
||||
vite.config.js
|
||||
lang/en/validation.php
|
||||
lang/en/passwords.php
|
||||
lang/en/pagination.php
|
||||
lang/en/auth.php
|
||||
lang/de/validation.php
|
||||
lang/de/passwords.php
|
||||
lang/de/pagination.php
|
||||
lang/de/auth.php
|
||||
lang/en.json
|
||||
README.md
|
||||
.styleci.yml
|
||||
tailwind.config.js
|
||||
routes/console.php
|
||||
routes/api.php
|
||||
routes/web.php
|
||||
routes/auth.php
|
||||
phpunit.xml
|
||||
routes/channels.php
|
||||
routes/web.php
|
||||
routes/console.php
|
||||
routes/auth.php
|
||||
routes/api.php
|
||||
resources/views/dashboard.blade.php
|
||||
resources/views/vendor/pagination/simple-tailwind.blade.php
|
||||
resources/views/vendor/pagination/simple-bootstrap-4.blade.php
|
||||
resources/views/vendor/pagination/simple-default.blade.php
|
||||
resources/views/vendor/pagination/tailwind.blade.php
|
||||
resources/views/vendor/pagination/default.blade.php
|
||||
resources/views/vendor/pagination/semantic-ui.blade.php
|
||||
resources/views/vendor/pagination/bootstrap-5.blade.php
|
||||
resources/views/vendor/pagination/bootstrap-4.blade.php
|
||||
resources/views/vendor/pagination/simple-bootstrap-5.blade.php
|
||||
resources/views/vendor/notifications/email.blade.php
|
||||
resources/views/vendor/mail/html/layout.blade.php
|
||||
resources/views/vendor/mail/html/panel.blade.php
|
||||
resources/views/vendor/mail/html/subcopy.blade.php
|
||||
resources/views/vendor/mail/html/button.blade.php
|
||||
resources/views/vendor/mail/html/header.blade.php
|
||||
resources/views/vendor/mail/html/message.blade.php
|
||||
resources/views/vendor/mail/html/footer.blade.php
|
||||
resources/views/vendor/mail/html/table.blade.php
|
||||
resources/views/vendor/mail/text/layout.blade.php
|
||||
resources/views/vendor/mail/text/panel.blade.php
|
||||
resources/views/vendor/mail/text/subcopy.blade.php
|
||||
resources/views/vendor/mail/text/button.blade.php
|
||||
resources/views/vendor/mail/text/header.blade.php
|
||||
resources/views/vendor/mail/text/message.blade.php
|
||||
resources/views/vendor/mail/text/footer.blade.php
|
||||
resources/views/vendor/mail/text/table.blade.php
|
||||
resources/views/components/text-input.blade.php
|
||||
resources/views/components/auth-validation-errors.blade.php
|
||||
resources/views/components/nav-link.blade.php
|
||||
resources/views/components/responsive-nav-link.blade.php
|
||||
resources/views/components/auth-card.blade.php
|
||||
resources/views/components/label.blade.php
|
||||
resources/views/components/auth-session-status.blade.php
|
||||
resources/views/components/secondary-button.blade.php
|
||||
resources/views/components/button.blade.php
|
||||
resources/views/components/dropdown.blade.php
|
||||
resources/views/components/danger-button.blade.php
|
||||
resources/views/components/input.blade.php
|
||||
resources/views/components/application-logo.blade.php
|
||||
resources/views/components/modal.blade.php
|
||||
resources/views/components/input-error.blade.php
|
||||
resources/views/components/primary-button.blade.php
|
||||
resources/views/components/dropdown-link.blade.php
|
||||
resources/views/components/input-label.blade.php
|
||||
resources/views/profile/partials/update-password-form.blade.php
|
||||
resources/views/profile/partials/delete-user-form.blade.php
|
||||
resources/views/profile/partials/update-profile-information-form.blade.php
|
||||
resources/views/profile/edit.blade.php
|
||||
resources/views/layouts/app.blade.php
|
||||
resources/views/layouts/navigation.blade.php
|
||||
resources/views/layouts/guest.blade.php
|
||||
resources/views/auth/login.blade.php
|
||||
resources/views/auth/confirm-password.blade.php
|
||||
resources/views/auth/reset-password.blade.php
|
||||
resources/views/auth/register.blade.php
|
||||
resources/views/auth/forgot-password.blade.php
|
||||
resources/views/auth/verify-email.blade.php
|
||||
resources/views/errors/layout.blade.php
|
||||
resources/views/errors/minimal.blade.php
|
||||
resources/views/errors/429.blade.php
|
||||
resources/views/errors/404.blade.php
|
||||
resources/views/errors/403.blade.php
|
||||
resources/views/errors/500.blade.php
|
||||
resources/views/errors/419.blade.php
|
||||
resources/views/errors/401.blade.php
|
||||
resources/views/errors/503.blade.php
|
||||
resources/views/welcome.blade.php
|
||||
resources/js/bootstrap.js
|
||||
resources/js/app.js
|
||||
composer.json
|
||||
tailwind.config.js
|
||||
artisan
|
||||
config/logging.php
|
||||
config/filesystems.php
|
||||
config/broadcasting.php
|
||||
config/sanctum.php
|
||||
config/tinker.php
|
||||
config/session.php
|
||||
config/database.php
|
||||
config/services.php
|
||||
config/view.php
|
||||
config/shop.php
|
||||
config/ignition.php
|
||||
config/auth.php
|
||||
config/flare.php
|
||||
config/mail.php
|
||||
config/cache.php
|
||||
config/cors.php
|
||||
config/queue.php
|
||||
config/app.php
|
||||
config/hashing.php
|
||||
LICENSE
|
||||
bootstrap/app.php
|
||||
vite.config.js
|
||||
tests/CreatesApplication.php
|
||||
tests/Feature/Auth/AuthenticationTest.php
|
||||
tests/Feature/Auth/PasswordConfirmationTest.php
|
||||
tests/Feature/Auth/PasswordUpdateTest.php
|
||||
tests/Feature/Auth/PasswordResetTest.php
|
||||
tests/Feature/Auth/EmailVerificationTest.php
|
||||
tests/Feature/Auth/RegistrationTest.php
|
||||
tests/Feature/ProfileTest.php
|
||||
tests/Feature/ExampleTest.php
|
||||
tests/TestCase.php
|
||||
tests/Unit/ExampleTest.php
|
||||
.gitattributes
|
||||
package-lock.json
|
||||
postcss.config.js
|
||||
app/Models/User.php
|
||||
app/Exceptions/Handler.php
|
||||
app/View/Components/AppLayout.php
|
||||
app/View/Components/GuestLayout.php
|
||||
app/Http/Middleware/Authenticate.php
|
||||
app/Http/Middleware/PreventRequestsDuringMaintenance.php
|
||||
app/Http/Middleware/EnsureEmailIsVerified.php
|
||||
app/Http/Middleware/RedirectIfAuthenticated.php
|
||||
app/Http/Middleware/EncryptCookies.php
|
||||
app/Http/Middleware/TrustHosts.php
|
||||
app/Http/Middleware/TrimStrings.php
|
||||
app/Http/Middleware/TrustProxies.php
|
||||
app/Http/Middleware/SetLocale.php
|
||||
app/Http/Middleware/VerifyCsrfToken.php
|
||||
app/Http/Controllers/Controller.php
|
||||
app/Http/Controllers/ProfileController.php
|
||||
app/Http/Controllers/Auth/PasswordResetLinkController.php
|
||||
app/Http/Controllers/Auth/EmailVerificationPromptController.php
|
||||
app/Providers/AuthServiceProvider.php
|
||||
app/Providers/BroadcastServiceProvider.php
|
||||
app/Providers/RouteServiceProvider.php
|
||||
app/Providers/EventServiceProvider.php
|
||||
app/Providers/AppServiceProvider.php
|
||||
app/Http/Controllers/Auth/NewPasswordController.php
|
||||
app/Http/Controllers/Auth/PasswordController.php
|
||||
app/Http/Controllers/Auth/VerifyEmailController.php
|
||||
app/Http/Controllers/Auth/RegisteredUserController.php
|
||||
app/Http/Controllers/Auth/ConfirmablePasswordController.php
|
||||
app/Http/Controllers/Auth/VerifyEmailController.php
|
||||
app/Http/Controllers/Auth/EmailVerificationPromptController.php
|
||||
app/Http/Controllers/Auth/AuthenticatedSessionController.php
|
||||
app/Http/Controllers/Auth/EmailVerificationNotificationController.php
|
||||
app/Http/Controllers/Auth/ConfirmablePasswordController.php
|
||||
app/Http/Controllers/Auth/PasswordResetLinkController.php
|
||||
app/Http/Controllers/Auth/PasswordController.php
|
||||
app/Http/Controllers/Controller.php
|
||||
app/Http/Controllers/ProfileController.php
|
||||
app/Http/Requests/Auth/LoginRequest.php
|
||||
app/Http/Requests/ProfileUpdateRequest.php
|
||||
app/Http/Kernel.php
|
||||
app/Providers/BroadcastServiceProvider.php
|
||||
app/Providers/AppServiceProvider.php
|
||||
app/Providers/AuthServiceProvider.php
|
||||
app/Providers/EventServiceProvider.php
|
||||
app/Providers/RouteServiceProvider.php
|
||||
app/Console/Kernel.php
|
||||
app/Http/Middleware/PreventRequestsDuringMaintenance.php
|
||||
app/Http/Middleware/EncryptCookies.php
|
||||
app/Http/Middleware/RedirectIfAuthenticated.php
|
||||
app/Http/Middleware/TrustHosts.php
|
||||
app/Http/Middleware/SetLocale.php
|
||||
app/Http/Middleware/EnsureEmailIsVerified.php
|
||||
app/Http/Middleware/VerifyCsrfToken.php
|
||||
app/Http/Middleware/Authenticate.php
|
||||
app/Http/Middleware/TrimStrings.php
|
||||
app/Http/Middleware/TrustProxies.php
|
||||
app/Composer.php
|
||||
tests/CreatesApplication.php
|
||||
tests/Unit/ExampleTest.php
|
||||
tests/TestCase.php
|
||||
tests/Feature/ProfileTest.php
|
||||
tests/Feature/Auth/EmailVerificationTest.php
|
||||
tests/Feature/Auth/PasswordResetTest.php
|
||||
tests/Feature/Auth/PasswordUpdateTest.php
|
||||
tests/Feature/Auth/PasswordConfirmationTest.php
|
||||
tests/Feature/Auth/AuthenticationTest.php
|
||||
tests/Feature/Auth/RegistrationTest.php
|
||||
tests/Feature/ExampleTest.php
|
||||
app/Exceptions/Handler.php
|
||||
app/View/Components/GuestLayout.php
|
||||
app/View/Components/AppLayout.php
|
||||
app/Models/User.php
|
||||
app/Console/Kernel.php
|
||||
database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php
|
||||
database/migrations/2014_10_12_100000_create_password_resets_table.php
|
||||
database/migrations/2019_08_19_000000_create_failed_jobs_table.php
|
||||
database/migrations/2014_10_12_000000_create_users_table.php
|
||||
database/seeders/DatabaseSeeder.php
|
||||
database/factories/UserFactory.php
|
||||
.styleci.yml
|
||||
.editorconfig
|
||||
packages/.gitkeep
|
||||
.env.example
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,46 +1,16 @@
|
||||
.gitattributes
|
||||
bootstrap/providers.php
|
||||
providers.php
|
||||
bootstrap/app.php
|
||||
app.php
|
||||
database/factories/UserFactory.php
|
||||
factories/UserFactory.php
|
||||
UserFactory.php
|
||||
database/seeders/DatabaseSeeder.php
|
||||
seeders/DatabaseSeeder.php
|
||||
DatabaseSeeder.php
|
||||
database/migrations/0001_01_01_000000_create_users_table.php
|
||||
migrations/0001_01_01_000000_create_users_table.php
|
||||
0001_01_01_000000_create_users_table.php
|
||||
database/migrations/0001_01_01_000001_create_cache_table.php
|
||||
migrations/0001_01_01_000001_create_cache_table.php
|
||||
0001_01_01_000001_create_cache_table.php
|
||||
database/migrations/0001_01_01_000002_create_jobs_table.php
|
||||
migrations/0001_01_01_000002_create_jobs_table.php
|
||||
0001_01_01_000002_create_jobs_table.php
|
||||
README.md
|
||||
package.json
|
||||
composer.json
|
||||
config/services.php
|
||||
services.php
|
||||
config/cache.php
|
||||
cache.php
|
||||
config/logging.php
|
||||
logging.php
|
||||
config/queue.php
|
||||
queue.php
|
||||
config/session.php
|
||||
session.php
|
||||
config/mail.php
|
||||
mail.php
|
||||
config/auth.php
|
||||
auth.php
|
||||
config/database.php
|
||||
database.php
|
||||
config/filesystems.php
|
||||
filesystems.php
|
||||
config/app.php
|
||||
app.php
|
||||
public/.htaccess
|
||||
.htaccess
|
||||
public/index.php
|
||||
index.php
|
||||
public/robots.txt
|
||||
robots.txt
|
||||
phpunit.xml
|
||||
routes/web.php
|
||||
web.php
|
||||
routes/console.php
|
||||
console.php
|
||||
resources/views/welcome.blade.php
|
||||
views/welcome.blade.php
|
||||
welcome.blade.php
|
||||
@@ -50,40 +20,70 @@ bootstrap.js
|
||||
resources/js/app.js
|
||||
js/app.js
|
||||
app.js
|
||||
artisan
|
||||
CHANGELOG.md
|
||||
public/index.php
|
||||
index.php
|
||||
public/robots.txt
|
||||
robots.txt
|
||||
public/.htaccess
|
||||
.htaccess
|
||||
.editorconfig
|
||||
vite.config.js
|
||||
README.md
|
||||
.styleci.yml
|
||||
composer.json
|
||||
tailwind.config.js
|
||||
routes/console.php
|
||||
console.php
|
||||
routes/web.php
|
||||
web.php
|
||||
artisan
|
||||
config/logging.php
|
||||
logging.php
|
||||
config/filesystems.php
|
||||
filesystems.php
|
||||
config/session.php
|
||||
session.php
|
||||
config/database.php
|
||||
database.php
|
||||
config/services.php
|
||||
services.php
|
||||
config/auth.php
|
||||
auth.php
|
||||
config/mail.php
|
||||
mail.php
|
||||
config/cache.php
|
||||
cache.php
|
||||
config/queue.php
|
||||
queue.php
|
||||
config/app.php
|
||||
app.php
|
||||
CHANGELOG.md
|
||||
bootstrap/providers.php
|
||||
providers.php
|
||||
bootstrap/app.php
|
||||
app.php
|
||||
vite.config.js
|
||||
tests/Feature/ExampleTest.php
|
||||
Feature/ExampleTest.php
|
||||
ExampleTest.php
|
||||
tests/TestCase.php
|
||||
TestCase.php
|
||||
tests/Unit/ExampleTest.php
|
||||
Unit/ExampleTest.php
|
||||
ExampleTest.php
|
||||
.gitattributes
|
||||
postcss.config.js
|
||||
app/Models/User.php
|
||||
Models/User.php
|
||||
User.php
|
||||
app/Providers/AppServiceProvider.php
|
||||
Providers/AppServiceProvider.php
|
||||
AppServiceProvider.php
|
||||
app/Http/Controllers/Controller.php
|
||||
Http/Controllers/Controller.php
|
||||
Controllers/Controller.php
|
||||
Controller.php
|
||||
app/Providers/AppServiceProvider.php
|
||||
Providers/AppServiceProvider.php
|
||||
AppServiceProvider.php
|
||||
tests/Unit/ExampleTest.php
|
||||
Unit/ExampleTest.php
|
||||
ExampleTest.php
|
||||
tests/TestCase.php
|
||||
TestCase.php
|
||||
tests/Feature/ExampleTest.php
|
||||
Feature/ExampleTest.php
|
||||
ExampleTest.php
|
||||
app/Models/User.php
|
||||
Models/User.php
|
||||
User.php
|
||||
database/migrations/0001_01_01_000001_create_cache_table.php
|
||||
migrations/0001_01_01_000001_create_cache_table.php
|
||||
0001_01_01_000001_create_cache_table.php
|
||||
database/migrations/0001_01_01_000002_create_jobs_table.php
|
||||
migrations/0001_01_01_000002_create_jobs_table.php
|
||||
0001_01_01_000002_create_jobs_table.php
|
||||
database/migrations/0001_01_01_000000_create_users_table.php
|
||||
migrations/0001_01_01_000000_create_users_table.php
|
||||
0001_01_01_000000_create_users_table.php
|
||||
database/seeders/DatabaseSeeder.php
|
||||
seeders/DatabaseSeeder.php
|
||||
DatabaseSeeder.php
|
||||
database/factories/UserFactory.php
|
||||
factories/UserFactory.php
|
||||
UserFactory.php
|
||||
.styleci.yml
|
||||
.editorconfig
|
||||
.env.example
|
||||
@@ -1,44 +1,44 @@
|
||||
.gitattributes
|
||||
bootstrap/providers.php
|
||||
bootstrap/app.php
|
||||
database/factories/UserFactory.php
|
||||
database/seeders/DatabaseSeeder.php
|
||||
database/migrations/0001_01_01_000000_create_users_table.php
|
||||
database/migrations/0001_01_01_000001_create_cache_table.php
|
||||
database/migrations/0001_01_01_000002_create_jobs_table.php
|
||||
README.md
|
||||
package.json
|
||||
composer.json
|
||||
config/services.php
|
||||
config/cache.php
|
||||
config/logging.php
|
||||
config/queue.php
|
||||
config/session.php
|
||||
config/mail.php
|
||||
config/auth.php
|
||||
config/database.php
|
||||
config/filesystems.php
|
||||
config/app.php
|
||||
public/.htaccess
|
||||
public/index.php
|
||||
public/robots.txt
|
||||
phpunit.xml
|
||||
routes/web.php
|
||||
routes/console.php
|
||||
resources/views/welcome.blade.php
|
||||
resources/js/bootstrap.js
|
||||
resources/js/app.js
|
||||
artisan
|
||||
CHANGELOG.md
|
||||
public/index.php
|
||||
public/robots.txt
|
||||
public/.htaccess
|
||||
.editorconfig
|
||||
vite.config.js
|
||||
README.md
|
||||
.styleci.yml
|
||||
composer.json
|
||||
tailwind.config.js
|
||||
routes/console.php
|
||||
routes/web.php
|
||||
postcss.config.js
|
||||
app/Models/User.php
|
||||
app/Http/Controllers/Controller.php
|
||||
app/Providers/AppServiceProvider.php
|
||||
tests/Unit/ExampleTest.php
|
||||
tests/TestCase.php
|
||||
artisan
|
||||
config/logging.php
|
||||
config/filesystems.php
|
||||
config/session.php
|
||||
config/database.php
|
||||
config/services.php
|
||||
config/auth.php
|
||||
config/mail.php
|
||||
config/cache.php
|
||||
config/queue.php
|
||||
config/app.php
|
||||
CHANGELOG.md
|
||||
bootstrap/providers.php
|
||||
bootstrap/app.php
|
||||
vite.config.js
|
||||
tests/Feature/ExampleTest.php
|
||||
tests/TestCase.php
|
||||
tests/Unit/ExampleTest.php
|
||||
.gitattributes
|
||||
postcss.config.js
|
||||
app/Providers/AppServiceProvider.php
|
||||
app/Http/Controllers/Controller.php
|
||||
app/Models/User.php
|
||||
database/migrations/0001_01_01_000001_create_cache_table.php
|
||||
database/migrations/0001_01_01_000002_create_jobs_table.php
|
||||
database/migrations/0001_01_01_000000_create_users_table.php
|
||||
database/seeders/DatabaseSeeder.php
|
||||
database/factories/UserFactory.php
|
||||
.styleci.yml
|
||||
.editorconfig
|
||||
.env.example
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,51 +1,51 @@
|
||||
.gitattributes
|
||||
.phpdoc.xml
|
||||
index.php.dist
|
||||
CONTRIBUTING.md
|
||||
.travis.yml
|
||||
lib/Pico.php
|
||||
Pico.php
|
||||
lib/AbstractPicoPlugin.php
|
||||
AbstractPicoPlugin.php
|
||||
lib/PicoTwigExtension.php
|
||||
PicoTwigExtension.php
|
||||
lib/PicoPluginInterface.php
|
||||
PicoPluginInterface.php
|
||||
.build/clean.sh
|
||||
clean.sh
|
||||
.build/install.sh
|
||||
install.sh
|
||||
.build/deploy-branch.sh
|
||||
deploy-branch.sh
|
||||
SECURITY.md
|
||||
README.md
|
||||
.htaccess
|
||||
.build/release.sh
|
||||
release.sh
|
||||
.build/deploy-release.sh
|
||||
deploy-release.sh
|
||||
.build/clean.sh
|
||||
clean.sh
|
||||
.build/deploy-branch.sh
|
||||
deploy-branch.sh
|
||||
.build/install.sh
|
||||
install.sh
|
||||
.build/init.sh.inc
|
||||
init.sh.inc
|
||||
SECURITY.md
|
||||
composer.json
|
||||
config/config.yml.template
|
||||
config.yml.template
|
||||
index.php
|
||||
.phpdoc.xml
|
||||
CHANGELOG.md
|
||||
.phpcs.xml
|
||||
.travis.yml
|
||||
.gitattributes
|
||||
lib/AbstractPicoPlugin.php
|
||||
AbstractPicoPlugin.php
|
||||
lib/PicoPluginInterface.php
|
||||
PicoPluginInterface.php
|
||||
lib/PicoTwigExtension.php
|
||||
PicoTwigExtension.php
|
||||
lib/Pico.php
|
||||
Pico.php
|
||||
content-sample/index.md
|
||||
index.md
|
||||
content-sample/404.md
|
||||
404.md
|
||||
content-sample/theme.md
|
||||
theme.md
|
||||
content-sample/_meta.md
|
||||
_meta.md
|
||||
content-sample/sub/index.md
|
||||
sub/index.md
|
||||
index.md
|
||||
content-sample/sub/page.md
|
||||
sub/page.md
|
||||
page.md
|
||||
content-sample/index.md
|
||||
index.md
|
||||
content-sample/404.md
|
||||
404.md
|
||||
index.php.dist
|
||||
CHANGELOG.md
|
||||
index.php
|
||||
content-sample/_meta.md
|
||||
_meta.md
|
||||
LICENSE.md
|
||||
README.md
|
||||
.phpcs.xml
|
||||
.htaccess
|
||||
plugins/DummyPlugin.php
|
||||
DummyPlugin.php
|
||||
@@ -1,31 +1,31 @@
|
||||
.gitattributes
|
||||
.phpdoc.xml
|
||||
index.php.dist
|
||||
CONTRIBUTING.md
|
||||
.travis.yml
|
||||
lib/Pico.php
|
||||
lib/AbstractPicoPlugin.php
|
||||
lib/PicoTwigExtension.php
|
||||
lib/PicoPluginInterface.php
|
||||
.build/clean.sh
|
||||
.build/install.sh
|
||||
.build/deploy-branch.sh
|
||||
SECURITY.md
|
||||
README.md
|
||||
.htaccess
|
||||
.build/release.sh
|
||||
.build/deploy-release.sh
|
||||
.build/clean.sh
|
||||
.build/deploy-branch.sh
|
||||
.build/install.sh
|
||||
.build/init.sh.inc
|
||||
SECURITY.md
|
||||
composer.json
|
||||
config/config.yml.template
|
||||
content-sample/theme.md
|
||||
content-sample/_meta.md
|
||||
content-sample/sub/index.md
|
||||
content-sample/sub/page.md
|
||||
index.php
|
||||
.phpdoc.xml
|
||||
CHANGELOG.md
|
||||
.phpcs.xml
|
||||
.travis.yml
|
||||
.gitattributes
|
||||
lib/AbstractPicoPlugin.php
|
||||
lib/PicoPluginInterface.php
|
||||
lib/PicoTwigExtension.php
|
||||
lib/Pico.php
|
||||
content-sample/index.md
|
||||
content-sample/404.md
|
||||
index.php.dist
|
||||
CHANGELOG.md
|
||||
index.php
|
||||
content-sample/theme.md
|
||||
content-sample/sub/index.md
|
||||
content-sample/sub/page.md
|
||||
content-sample/_meta.md
|
||||
LICENSE.md
|
||||
README.md
|
||||
.phpcs.xml
|
||||
.htaccess
|
||||
plugins/DummyPlugin.php
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,24 +1,67 @@
|
||||
.gitattributes
|
||||
bootstrap/autoload.php
|
||||
autoload.php
|
||||
bootstrap/app.php
|
||||
app.php
|
||||
Envoy.blade.php
|
||||
database/factories/ModelFactory.php
|
||||
factories/ModelFactory.php
|
||||
ModelFactory.php
|
||||
database/migrations/.gitkeep
|
||||
migrations/.gitkeep
|
||||
.gitkeep
|
||||
database/seeds/.gitkeep
|
||||
seeds/.gitkeep
|
||||
.gitkeep
|
||||
database/seeds/DatabaseSeeder.php
|
||||
seeds/DatabaseSeeder.php
|
||||
DatabaseSeeder.php
|
||||
docs/en/02.prologue.md
|
||||
en/02.prologue.md
|
||||
02.prologue.md
|
||||
CONTRIBUTING.md
|
||||
app.json
|
||||
README.md
|
||||
package.json
|
||||
public/.htaccess
|
||||
.htaccess
|
||||
public/index.php
|
||||
index.php
|
||||
docs/en/04.the-basics/12.variables.md
|
||||
en/04.the-basics/12.variables.md
|
||||
04.the-basics/12.variables.md
|
||||
12.variables.md
|
||||
docs/en/04.the-basics/09.blocks.md
|
||||
en/04.the-basics/09.blocks.md
|
||||
04.the-basics/09.blocks.md
|
||||
09.blocks.md
|
||||
docs/en/04.the-basics/01.index.md
|
||||
en/04.the-basics/01.index.md
|
||||
04.the-basics/01.index.md
|
||||
01.index.md
|
||||
docs/en/04.the-basics/07.pages.md
|
||||
en/04.the-basics/07.pages.md
|
||||
04.the-basics/07.pages.md
|
||||
07.pages.md
|
||||
docs/en/04.the-basics/03.control-panel.md
|
||||
en/04.the-basics/03.control-panel.md
|
||||
04.the-basics/03.control-panel.md
|
||||
03.control-panel.md
|
||||
docs/en/04.the-basics/10.files.md
|
||||
en/04.the-basics/10.files.md
|
||||
04.the-basics/10.files.md
|
||||
10.files.md
|
||||
docs/en/04.the-basics/14.preferences.md
|
||||
en/04.the-basics/14.preferences.md
|
||||
04.the-basics/14.preferences.md
|
||||
14.preferences.md
|
||||
docs/en/04.the-basics/15.redirects.md
|
||||
en/04.the-basics/15.redirects.md
|
||||
04.the-basics/15.redirects.md
|
||||
15.redirects.md
|
||||
docs/en/04.the-basics/13.settings.md
|
||||
en/04.the-basics/13.settings.md
|
||||
04.the-basics/13.settings.md
|
||||
13.settings.md
|
||||
docs/en/04.the-basics/08.posts.md
|
||||
en/04.the-basics/08.posts.md
|
||||
04.the-basics/08.posts.md
|
||||
08.posts.md
|
||||
docs/en/04.the-basics/06.templating.md
|
||||
en/04.the-basics/06.templating.md
|
||||
04.the-basics/06.templating.md
|
||||
06.templating.md
|
||||
docs/en/04.the-basics/11.users.md
|
||||
en/04.the-basics/11.users.md
|
||||
04.the-basics/11.users.md
|
||||
11.users.md
|
||||
docs/en/04.the-basics/05.addons.md
|
||||
en/04.the-basics/05.addons.md
|
||||
04.the-basics/05.addons.md
|
||||
05.addons.md
|
||||
docs/en/04.the-basics/16.localization.md
|
||||
en/04.the-basics/16.localization.md
|
||||
04.the-basics/16.localization.md
|
||||
16.localization.md
|
||||
docs/en/01.index.md
|
||||
en/01.index.md
|
||||
01.index.md
|
||||
@@ -34,74 +77,6 @@ docs/en/03.core-concepts/02.architecture.md
|
||||
en/03.core-concepts/02.architecture.md
|
||||
03.core-concepts/02.architecture.md
|
||||
02.architecture.md
|
||||
docs/en/04.the-basics/07.pages.md
|
||||
en/04.the-basics/07.pages.md
|
||||
04.the-basics/07.pages.md
|
||||
07.pages.md
|
||||
docs/en/04.the-basics/14.preferences.md
|
||||
en/04.the-basics/14.preferences.md
|
||||
04.the-basics/14.preferences.md
|
||||
14.preferences.md
|
||||
docs/en/04.the-basics/08.posts.md
|
||||
en/04.the-basics/08.posts.md
|
||||
04.the-basics/08.posts.md
|
||||
08.posts.md
|
||||
docs/en/04.the-basics/13.settings.md
|
||||
en/04.the-basics/13.settings.md
|
||||
04.the-basics/13.settings.md
|
||||
13.settings.md
|
||||
docs/en/04.the-basics/15.redirects.md
|
||||
en/04.the-basics/15.redirects.md
|
||||
04.the-basics/15.redirects.md
|
||||
15.redirects.md
|
||||
docs/en/04.the-basics/03.control-panel.md
|
||||
en/04.the-basics/03.control-panel.md
|
||||
04.the-basics/03.control-panel.md
|
||||
03.control-panel.md
|
||||
docs/en/04.the-basics/01.index.md
|
||||
en/04.the-basics/01.index.md
|
||||
04.the-basics/01.index.md
|
||||
01.index.md
|
||||
docs/en/04.the-basics/09.blocks.md
|
||||
en/04.the-basics/09.blocks.md
|
||||
04.the-basics/09.blocks.md
|
||||
09.blocks.md
|
||||
docs/en/04.the-basics/11.users.md
|
||||
en/04.the-basics/11.users.md
|
||||
04.the-basics/11.users.md
|
||||
11.users.md
|
||||
docs/en/04.the-basics/10.files.md
|
||||
en/04.the-basics/10.files.md
|
||||
04.the-basics/10.files.md
|
||||
10.files.md
|
||||
docs/en/04.the-basics/06.templating.md
|
||||
en/04.the-basics/06.templating.md
|
||||
04.the-basics/06.templating.md
|
||||
06.templating.md
|
||||
docs/en/04.the-basics/05.addons.md
|
||||
en/04.the-basics/05.addons.md
|
||||
04.the-basics/05.addons.md
|
||||
05.addons.md
|
||||
docs/en/04.the-basics/12.variables.md
|
||||
en/04.the-basics/12.variables.md
|
||||
04.the-basics/12.variables.md
|
||||
12.variables.md
|
||||
docs/en/04.the-basics/16.localization.md
|
||||
en/04.the-basics/16.localization.md
|
||||
04.the-basics/16.localization.md
|
||||
16.localization.md
|
||||
docs/en/01.prologue/05.contribution-guide.md
|
||||
en/01.prologue/05.contribution-guide.md
|
||||
01.prologue/05.contribution-guide.md
|
||||
05.contribution-guide.md
|
||||
docs/en/01.prologue/02.release-notes.md
|
||||
en/01.prologue/02.release-notes.md
|
||||
01.prologue/02.release-notes.md
|
||||
02.release-notes.md
|
||||
docs/en/01.prologue/03.change-log.md
|
||||
en/01.prologue/03.change-log.md
|
||||
01.prologue/03.change-log.md
|
||||
03.change-log.md
|
||||
docs/en/01.prologue/04.upgrade-guide.md
|
||||
en/01.prologue/04.upgrade-guide.md
|
||||
01.prologue/04.upgrade-guide.md
|
||||
@@ -110,143 +85,89 @@ docs/en/01.prologue/01.index.md
|
||||
en/01.prologue/01.index.md
|
||||
01.prologue/01.index.md
|
||||
01.index.md
|
||||
docs/en/01.prologue/05.contribution-guide.md
|
||||
en/01.prologue/05.contribution-guide.md
|
||||
01.prologue/05.contribution-guide.md
|
||||
05.contribution-guide.md
|
||||
docs/en/01.prologue/03.change-log.md
|
||||
en/01.prologue/03.change-log.md
|
||||
01.prologue/03.change-log.md
|
||||
03.change-log.md
|
||||
docs/en/01.prologue/02.release-notes.md
|
||||
en/01.prologue/02.release-notes.md
|
||||
01.prologue/02.release-notes.md
|
||||
02.release-notes.md
|
||||
docs/en/01.prologue/06.addon-marketplace.md
|
||||
en/01.prologue/06.addon-marketplace.md
|
||||
01.prologue/06.addon-marketplace.md
|
||||
06.addon-marketplace.md
|
||||
docs/en/02.getting-started/02.installation.md
|
||||
en/02.getting-started/02.installation.md
|
||||
02.getting-started/02.installation.md
|
||||
02.installation.md
|
||||
docs/en/02.getting-started/09.optimizing.md
|
||||
en/02.getting-started/09.optimizing.md
|
||||
02.getting-started/09.optimizing.md
|
||||
09.optimizing.md
|
||||
docs/en/02.prologue.md
|
||||
en/02.prologue.md
|
||||
02.prologue.md
|
||||
docs/en/02.getting-started/01.index.md
|
||||
en/02.getting-started/01.index.md
|
||||
02.getting-started/01.index.md
|
||||
01.index.md
|
||||
docs/en/02.getting-started/08.deployment.md
|
||||
en/02.getting-started/08.deployment.md
|
||||
02.getting-started/08.deployment.md
|
||||
08.deployment.md
|
||||
docs/en/02.getting-started/04.directory-structure.md
|
||||
en/02.getting-started/04.directory-structure.md
|
||||
02.getting-started/04.directory-structure.md
|
||||
04.directory-structure.md
|
||||
docs/en/02.getting-started/03.configuration.md
|
||||
en/02.getting-started/03.configuration.md
|
||||
02.getting-started/03.configuration.md
|
||||
03.configuration.md
|
||||
docs/en/02.getting-started/05.managing-addons.md
|
||||
en/02.getting-started/05.managing-addons.md
|
||||
02.getting-started/05.managing-addons.md
|
||||
05.managing-addons.md
|
||||
docs/en/02.getting-started/04.directory-structure.md
|
||||
en/02.getting-started/04.directory-structure.md
|
||||
02.getting-started/04.directory-structure.md
|
||||
04.directory-structure.md
|
||||
docs/en/02.getting-started/09.optimizing.md
|
||||
en/02.getting-started/09.optimizing.md
|
||||
02.getting-started/09.optimizing.md
|
||||
09.optimizing.md
|
||||
docs/en/02.getting-started/08.deployment.md
|
||||
en/02.getting-started/08.deployment.md
|
||||
02.getting-started/08.deployment.md
|
||||
08.deployment.md
|
||||
docs/en/02.getting-started/03.configuration.md
|
||||
en/02.getting-started/03.configuration.md
|
||||
02.getting-started/03.configuration.md
|
||||
03.configuration.md
|
||||
docs/en/02.getting-started/10.error-logging.md
|
||||
en/02.getting-started/10.error-logging.md
|
||||
02.getting-started/10.error-logging.md
|
||||
10.error-logging.md
|
||||
webpack.mix.js
|
||||
CONTRIBUTING.md
|
||||
addons/.gitkeep
|
||||
.gitkeep
|
||||
package.json
|
||||
composer.lock
|
||||
composer.json
|
||||
config/httpcache.php
|
||||
httpcache.php
|
||||
config/services.php
|
||||
services.php
|
||||
config/cache.php
|
||||
cache.php
|
||||
config/logging.php
|
||||
logging.php
|
||||
config/compile.php
|
||||
compile.php
|
||||
config/streams.php
|
||||
streams.php
|
||||
config/view.php
|
||||
view.php
|
||||
config/queue.php
|
||||
queue.php
|
||||
config/image.php
|
||||
image.php
|
||||
config/session.php
|
||||
session.php
|
||||
config/broadcasting.php
|
||||
broadcasting.php
|
||||
config/mail.php
|
||||
mail.php
|
||||
config/auth.php
|
||||
auth.php
|
||||
config/debugbar.php
|
||||
debugbar.php
|
||||
config/database.php
|
||||
database.php
|
||||
config/scout.php
|
||||
scout.php
|
||||
config/filesystems.php
|
||||
filesystems.php
|
||||
config/app.php
|
||||
app.php
|
||||
nginx_app.conf
|
||||
docs/en/02.getting-started/02.installation.md
|
||||
en/02.getting-started/02.installation.md
|
||||
02.getting-started/02.installation.md
|
||||
02.installation.md
|
||||
phpunit.xml
|
||||
resources/assets/sass/app.scss
|
||||
assets/sass/app.scss
|
||||
sass/app.scss
|
||||
app.scss
|
||||
resources/assets/sass/variables.scss
|
||||
assets/sass/variables.scss
|
||||
sass/variables.scss
|
||||
variables.scss
|
||||
resources/assets/js/bootstrap.js
|
||||
assets/js/bootstrap.js
|
||||
js/bootstrap.js
|
||||
bootstrap.js
|
||||
resources/assets/js/app.js
|
||||
assets/js/app.js
|
||||
js/app.js
|
||||
app.js
|
||||
resources/assets/js/components/Example.vue
|
||||
assets/js/components/Example.vue
|
||||
js/components/Example.vue
|
||||
components/Example.vue
|
||||
Example.vue
|
||||
resources/streams/config/addons.php
|
||||
streams/config/addons.php
|
||||
config/addons.php
|
||||
addons.php
|
||||
Procfile
|
||||
routes/web.php
|
||||
web.php
|
||||
routes/console.php
|
||||
console.php
|
||||
routes/api.php
|
||||
api.php
|
||||
resources/streams/config/navigation.php
|
||||
streams/config/navigation.php
|
||||
config/navigation.php
|
||||
navigation.php
|
||||
resources/streams/config/distribution.php
|
||||
streams/config/distribution.php
|
||||
config/distribution.php
|
||||
distribution.php
|
||||
resources/streams/config/themes.php
|
||||
streams/config/themes.php
|
||||
config/themes.php
|
||||
themes.php
|
||||
resources/views/welcome.blade.php
|
||||
views/welcome.blade.php
|
||||
welcome.blade.php
|
||||
resources/views/vendor/.gitkeep
|
||||
views/vendor/.gitkeep
|
||||
vendor/.gitkeep
|
||||
.gitkeep
|
||||
resources/views/errors/503.blade.php
|
||||
views/errors/503.blade.php
|
||||
errors/503.blade.php
|
||||
503.blade.php
|
||||
resources/lang/fa/validation.php
|
||||
lang/fa/validation.php
|
||||
fa/validation.php
|
||||
validation.php
|
||||
resources/streams/config/addons.php
|
||||
streams/config/addons.php
|
||||
config/addons.php
|
||||
addons.php
|
||||
resources/streams/config/distribution.php
|
||||
streams/config/distribution.php
|
||||
config/distribution.php
|
||||
distribution.php
|
||||
resources/lang/fa/passwords.php
|
||||
lang/fa/passwords.php
|
||||
fa/passwords.php
|
||||
passwords.php
|
||||
resources/lang/fa/validation.php
|
||||
lang/fa/validation.php
|
||||
fa/validation.php
|
||||
validation.php
|
||||
resources/lang/fa/pagination.php
|
||||
lang/fa/pagination.php
|
||||
fa/pagination.php
|
||||
@@ -255,30 +176,14 @@ resources/lang/fa/auth.php
|
||||
lang/fa/auth.php
|
||||
fa/auth.php
|
||||
auth.php
|
||||
resources/lang/en/validation.php
|
||||
lang/en/validation.php
|
||||
en/validation.php
|
||||
validation.php
|
||||
resources/lang/en/passwords.php
|
||||
lang/en/passwords.php
|
||||
en/passwords.php
|
||||
passwords.php
|
||||
resources/lang/en/pagination.php
|
||||
lang/en/pagination.php
|
||||
en/pagination.php
|
||||
pagination.php
|
||||
resources/lang/en/auth.php
|
||||
lang/en/auth.php
|
||||
en/auth.php
|
||||
auth.php
|
||||
resources/lang/tr/validation.php
|
||||
lang/tr/validation.php
|
||||
tr/validation.php
|
||||
validation.php
|
||||
resources/lang/tr/passwords.php
|
||||
lang/tr/passwords.php
|
||||
tr/passwords.php
|
||||
passwords.php
|
||||
resources/lang/tr/validation.php
|
||||
lang/tr/validation.php
|
||||
tr/validation.php
|
||||
validation.php
|
||||
resources/lang/tr/pagination.php
|
||||
lang/tr/pagination.php
|
||||
tr/pagination.php
|
||||
@@ -287,14 +192,14 @@ resources/lang/tr/auth.php
|
||||
lang/tr/auth.php
|
||||
tr/auth.php
|
||||
auth.php
|
||||
resources/lang/ar/validation.php
|
||||
lang/ar/validation.php
|
||||
ar/validation.php
|
||||
validation.php
|
||||
resources/lang/ar/passwords.php
|
||||
lang/ar/passwords.php
|
||||
ar/passwords.php
|
||||
passwords.php
|
||||
resources/lang/ar/validation.php
|
||||
lang/ar/validation.php
|
||||
ar/validation.php
|
||||
validation.php
|
||||
resources/lang/ar/pagination.php
|
||||
lang/ar/pagination.php
|
||||
ar/pagination.php
|
||||
@@ -303,40 +208,135 @@ resources/lang/ar/auth.php
|
||||
lang/ar/auth.php
|
||||
ar/auth.php
|
||||
auth.php
|
||||
server.php
|
||||
resources/lang/en/passwords.php
|
||||
lang/en/passwords.php
|
||||
en/passwords.php
|
||||
passwords.php
|
||||
resources/lang/en/validation.php
|
||||
lang/en/validation.php
|
||||
en/validation.php
|
||||
validation.php
|
||||
resources/lang/en/pagination.php
|
||||
lang/en/pagination.php
|
||||
en/pagination.php
|
||||
pagination.php
|
||||
resources/lang/en/auth.php
|
||||
lang/en/auth.php
|
||||
en/auth.php
|
||||
auth.php
|
||||
resources/assets/sass/variables.scss
|
||||
assets/sass/variables.scss
|
||||
sass/variables.scss
|
||||
variables.scss
|
||||
resources/assets/sass/app.scss
|
||||
assets/sass/app.scss
|
||||
sass/app.scss
|
||||
app.scss
|
||||
resources/assets/js/components/Example.vue
|
||||
assets/js/components/Example.vue
|
||||
js/components/Example.vue
|
||||
components/Example.vue
|
||||
Example.vue
|
||||
resources/assets/js/bootstrap.js
|
||||
assets/js/bootstrap.js
|
||||
js/bootstrap.js
|
||||
bootstrap.js
|
||||
resources/assets/js/app.js
|
||||
assets/js/app.js
|
||||
js/app.js
|
||||
app.js
|
||||
resources/views/vendor/.gitkeep
|
||||
views/vendor/.gitkeep
|
||||
vendor/.gitkeep
|
||||
.gitkeep
|
||||
resources/views/errors/503.blade.php
|
||||
views/errors/503.blade.php
|
||||
errors/503.blade.php
|
||||
503.blade.php
|
||||
resources/views/welcome.blade.php
|
||||
views/welcome.blade.php
|
||||
welcome.blade.php
|
||||
build.xml
|
||||
nginx_app.conf
|
||||
composer.json
|
||||
artisan
|
||||
public/index.php
|
||||
index.php
|
||||
public/.htaccess
|
||||
.htaccess
|
||||
app.json
|
||||
.editorconfig
|
||||
Procfile
|
||||
LICENSE.md
|
||||
README.md
|
||||
routes/console.php
|
||||
console.php
|
||||
routes/api.php
|
||||
api.php
|
||||
routes/web.php
|
||||
web.php
|
||||
app/Providers/BroadcastServiceProvider.php
|
||||
Providers/BroadcastServiceProvider.php
|
||||
BroadcastServiceProvider.php
|
||||
app/Providers/AppServiceProvider.php
|
||||
Providers/AppServiceProvider.php
|
||||
AppServiceProvider.php
|
||||
config/logging.php
|
||||
logging.php
|
||||
config/filesystems.php
|
||||
filesystems.php
|
||||
config/debugbar.php
|
||||
debugbar.php
|
||||
config/broadcasting.php
|
||||
broadcasting.php
|
||||
config/image.php
|
||||
image.php
|
||||
config/session.php
|
||||
session.php
|
||||
config/database.php
|
||||
database.php
|
||||
config/services.php
|
||||
services.php
|
||||
config/view.php
|
||||
view.php
|
||||
config/httpcache.php
|
||||
httpcache.php
|
||||
config/auth.php
|
||||
auth.php
|
||||
config/compile.php
|
||||
compile.php
|
||||
config/scout.php
|
||||
scout.php
|
||||
config/mail.php
|
||||
mail.php
|
||||
config/cache.php
|
||||
cache.php
|
||||
config/queue.php
|
||||
queue.php
|
||||
config/streams.php
|
||||
streams.php
|
||||
config/app.php
|
||||
app.php
|
||||
Envoy.blade.php
|
||||
bootstrap/autoload.php
|
||||
autoload.php
|
||||
bootstrap/app.php
|
||||
app.php
|
||||
tests/TestCase.php
|
||||
TestCase.php
|
||||
addons/.gitkeep
|
||||
.gitkeep
|
||||
.gitattributes
|
||||
app/Providers/AuthServiceProvider.php
|
||||
Providers/AuthServiceProvider.php
|
||||
AuthServiceProvider.php
|
||||
app/Providers/EventServiceProvider.php
|
||||
Providers/EventServiceProvider.php
|
||||
EventServiceProvider.php
|
||||
app/Providers/BroadcastServiceProvider.php
|
||||
Providers/BroadcastServiceProvider.php
|
||||
BroadcastServiceProvider.php
|
||||
app/Providers/RouteServiceProvider.php
|
||||
Providers/RouteServiceProvider.php
|
||||
RouteServiceProvider.php
|
||||
app/Providers/EventServiceProvider.php
|
||||
Providers/EventServiceProvider.php
|
||||
EventServiceProvider.php
|
||||
app/Providers/AppServiceProvider.php
|
||||
Providers/AppServiceProvider.php
|
||||
AppServiceProvider.php
|
||||
app/README.md
|
||||
README.md
|
||||
tests/TestCase.php
|
||||
TestCase.php
|
||||
build.xml
|
||||
server.php
|
||||
database/migrations/.gitkeep
|
||||
migrations/.gitkeep
|
||||
.gitkeep
|
||||
database/factories/ModelFactory.php
|
||||
factories/ModelFactory.php
|
||||
ModelFactory.php
|
||||
database/seeds/.gitkeep
|
||||
seeds/.gitkeep
|
||||
.gitkeep
|
||||
database/seeds/DatabaseSeeder.php
|
||||
seeds/DatabaseSeeder.php
|
||||
DatabaseSeeder.php
|
||||
composer.lock
|
||||
.editorconfig
|
||||
LICENSE.md
|
||||
webpack.mix.js
|
||||
@@ -1,115 +1,115 @@
|
||||
.gitattributes
|
||||
bootstrap/autoload.php
|
||||
bootstrap/app.php
|
||||
Envoy.blade.php
|
||||
database/factories/ModelFactory.php
|
||||
database/migrations/.gitkeep
|
||||
database/seeds/.gitkeep
|
||||
database/seeds/DatabaseSeeder.php
|
||||
docs/en/02.prologue.md
|
||||
CONTRIBUTING.md
|
||||
app.json
|
||||
README.md
|
||||
package.json
|
||||
public/.htaccess
|
||||
public/index.php
|
||||
docs/en/04.the-basics/12.variables.md
|
||||
docs/en/04.the-basics/09.blocks.md
|
||||
docs/en/04.the-basics/01.index.md
|
||||
docs/en/04.the-basics/07.pages.md
|
||||
docs/en/04.the-basics/03.control-panel.md
|
||||
docs/en/04.the-basics/10.files.md
|
||||
docs/en/04.the-basics/14.preferences.md
|
||||
docs/en/04.the-basics/15.redirects.md
|
||||
docs/en/04.the-basics/13.settings.md
|
||||
docs/en/04.the-basics/08.posts.md
|
||||
docs/en/04.the-basics/06.templating.md
|
||||
docs/en/04.the-basics/11.users.md
|
||||
docs/en/04.the-basics/05.addons.md
|
||||
docs/en/04.the-basics/16.localization.md
|
||||
docs/en/01.index.md
|
||||
docs/en/03.core-concepts/01.index.md
|
||||
docs/en/03.core-concepts/03.streams-and-entries.md
|
||||
docs/en/03.core-concepts/02.architecture.md
|
||||
docs/en/04.the-basics/07.pages.md
|
||||
docs/en/04.the-basics/14.preferences.md
|
||||
docs/en/04.the-basics/08.posts.md
|
||||
docs/en/04.the-basics/13.settings.md
|
||||
docs/en/04.the-basics/15.redirects.md
|
||||
docs/en/04.the-basics/03.control-panel.md
|
||||
docs/en/04.the-basics/01.index.md
|
||||
docs/en/04.the-basics/09.blocks.md
|
||||
docs/en/04.the-basics/11.users.md
|
||||
docs/en/04.the-basics/10.files.md
|
||||
docs/en/04.the-basics/06.templating.md
|
||||
docs/en/04.the-basics/05.addons.md
|
||||
docs/en/04.the-basics/12.variables.md
|
||||
docs/en/04.the-basics/16.localization.md
|
||||
docs/en/01.prologue/05.contribution-guide.md
|
||||
docs/en/01.prologue/02.release-notes.md
|
||||
docs/en/01.prologue/03.change-log.md
|
||||
docs/en/01.prologue/04.upgrade-guide.md
|
||||
docs/en/01.prologue/01.index.md
|
||||
docs/en/01.prologue/05.contribution-guide.md
|
||||
docs/en/01.prologue/03.change-log.md
|
||||
docs/en/01.prologue/02.release-notes.md
|
||||
docs/en/01.prologue/06.addon-marketplace.md
|
||||
docs/en/02.getting-started/02.installation.md
|
||||
docs/en/02.getting-started/09.optimizing.md
|
||||
docs/en/02.prologue.md
|
||||
docs/en/02.getting-started/01.index.md
|
||||
docs/en/02.getting-started/08.deployment.md
|
||||
docs/en/02.getting-started/04.directory-structure.md
|
||||
docs/en/02.getting-started/03.configuration.md
|
||||
docs/en/02.getting-started/05.managing-addons.md
|
||||
docs/en/02.getting-started/04.directory-structure.md
|
||||
docs/en/02.getting-started/09.optimizing.md
|
||||
docs/en/02.getting-started/08.deployment.md
|
||||
docs/en/02.getting-started/03.configuration.md
|
||||
docs/en/02.getting-started/10.error-logging.md
|
||||
webpack.mix.js
|
||||
CONTRIBUTING.md
|
||||
addons/.gitkeep
|
||||
package.json
|
||||
composer.lock
|
||||
composer.json
|
||||
config/httpcache.php
|
||||
config/services.php
|
||||
config/cache.php
|
||||
config/logging.php
|
||||
config/compile.php
|
||||
config/streams.php
|
||||
config/view.php
|
||||
config/queue.php
|
||||
config/image.php
|
||||
config/session.php
|
||||
config/broadcasting.php
|
||||
config/mail.php
|
||||
config/auth.php
|
||||
config/debugbar.php
|
||||
config/database.php
|
||||
config/scout.php
|
||||
config/filesystems.php
|
||||
config/app.php
|
||||
nginx_app.conf
|
||||
docs/en/02.getting-started/02.installation.md
|
||||
phpunit.xml
|
||||
resources/assets/sass/app.scss
|
||||
resources/assets/sass/variables.scss
|
||||
resources/assets/js/bootstrap.js
|
||||
resources/assets/js/app.js
|
||||
resources/assets/js/components/Example.vue
|
||||
resources/streams/config/addons.php
|
||||
resources/streams/config/navigation.php
|
||||
resources/streams/config/distribution.php
|
||||
resources/streams/config/themes.php
|
||||
resources/views/welcome.blade.php
|
||||
resources/views/vendor/.gitkeep
|
||||
resources/views/errors/503.blade.php
|
||||
resources/lang/fa/validation.php
|
||||
resources/lang/fa/passwords.php
|
||||
resources/lang/fa/pagination.php
|
||||
resources/lang/fa/auth.php
|
||||
resources/lang/en/validation.php
|
||||
resources/lang/en/passwords.php
|
||||
resources/lang/en/pagination.php
|
||||
resources/lang/en/auth.php
|
||||
resources/lang/tr/validation.php
|
||||
resources/lang/tr/passwords.php
|
||||
resources/lang/tr/pagination.php
|
||||
resources/lang/tr/auth.php
|
||||
resources/lang/ar/validation.php
|
||||
resources/lang/ar/passwords.php
|
||||
resources/lang/ar/pagination.php
|
||||
resources/lang/ar/auth.php
|
||||
server.php
|
||||
artisan
|
||||
public/index.php
|
||||
public/.htaccess
|
||||
app.json
|
||||
.editorconfig
|
||||
Procfile
|
||||
LICENSE.md
|
||||
README.md
|
||||
routes/web.php
|
||||
routes/console.php
|
||||
routes/api.php
|
||||
routes/web.php
|
||||
app/Providers/BroadcastServiceProvider.php
|
||||
app/Providers/AppServiceProvider.php
|
||||
app/Providers/AuthServiceProvider.php
|
||||
app/Providers/EventServiceProvider.php
|
||||
app/Providers/RouteServiceProvider.php
|
||||
app/README.md
|
||||
tests/TestCase.php
|
||||
resources/streams/config/navigation.php
|
||||
resources/streams/config/themes.php
|
||||
resources/streams/config/addons.php
|
||||
resources/streams/config/distribution.php
|
||||
resources/lang/fa/passwords.php
|
||||
resources/lang/fa/validation.php
|
||||
resources/lang/fa/pagination.php
|
||||
resources/lang/fa/auth.php
|
||||
resources/lang/tr/passwords.php
|
||||
resources/lang/tr/validation.php
|
||||
resources/lang/tr/pagination.php
|
||||
resources/lang/tr/auth.php
|
||||
resources/lang/ar/passwords.php
|
||||
resources/lang/ar/validation.php
|
||||
resources/lang/ar/pagination.php
|
||||
resources/lang/ar/auth.php
|
||||
resources/lang/en/passwords.php
|
||||
resources/lang/en/validation.php
|
||||
resources/lang/en/pagination.php
|
||||
resources/lang/en/auth.php
|
||||
resources/assets/sass/variables.scss
|
||||
resources/assets/sass/app.scss
|
||||
resources/assets/js/components/Example.vue
|
||||
resources/assets/js/bootstrap.js
|
||||
resources/assets/js/app.js
|
||||
resources/views/vendor/.gitkeep
|
||||
resources/views/errors/503.blade.php
|
||||
resources/views/welcome.blade.php
|
||||
build.xml
|
||||
nginx_app.conf
|
||||
composer.json
|
||||
artisan
|
||||
config/logging.php
|
||||
config/filesystems.php
|
||||
config/debugbar.php
|
||||
config/broadcasting.php
|
||||
config/image.php
|
||||
config/session.php
|
||||
config/database.php
|
||||
config/services.php
|
||||
config/view.php
|
||||
config/httpcache.php
|
||||
config/auth.php
|
||||
config/compile.php
|
||||
config/scout.php
|
||||
config/mail.php
|
||||
config/cache.php
|
||||
config/queue.php
|
||||
config/streams.php
|
||||
config/app.php
|
||||
Envoy.blade.php
|
||||
bootstrap/autoload.php
|
||||
bootstrap/app.php
|
||||
tests/TestCase.php
|
||||
addons/.gitkeep
|
||||
.gitattributes
|
||||
app/Providers/AuthServiceProvider.php
|
||||
app/Providers/BroadcastServiceProvider.php
|
||||
app/Providers/RouteServiceProvider.php
|
||||
app/Providers/EventServiceProvider.php
|
||||
app/Providers/AppServiceProvider.php
|
||||
app/README.md
|
||||
server.php
|
||||
database/migrations/.gitkeep
|
||||
database/factories/ModelFactory.php
|
||||
database/seeds/.gitkeep
|
||||
database/seeds/DatabaseSeeder.php
|
||||
composer.lock
|
||||
.editorconfig
|
||||
LICENSE.md
|
||||
webpack.mix.js
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -45,8 +45,11 @@ Source: [Google's RAFT](https://code.google.com/archive/p/raft/)
|
||||
|
||||
## combined_words.txt
|
||||
|
||||
### Overview
|
||||
Use for: discovering files
|
||||
This list is automatically updated by a github action whenever any of the lists it's composed by is modified.
|
||||
|
||||
This list is a combination of the following wordlists:
|
||||
|
||||
- big.txt
|
||||
- common.txt
|
||||
- raft-large-words-lowercase.txt
|
||||
@@ -56,15 +59,12 @@ This list is a combination of the following wordlists:
|
||||
- raft-small-words-lowercase.txt
|
||||
- raft-small-words.txt
|
||||
|
||||
### Usage
|
||||
Use for: discovering files
|
||||
|
||||
### Source
|
||||
This list is automatically updated by a GitHub action whenever any of the lists it's composed by is modified.
|
||||
|
||||
## combined_directories.txt
|
||||
|
||||
### Overview
|
||||
Use for: discovering files and directories
|
||||
This list is automatically updated by a github action whenever any of the lists it's composed by is modified.
|
||||
|
||||
This list is a combination of the following wordlists:
|
||||
- apache.txt
|
||||
- combined_words.txt
|
||||
@@ -89,26 +89,18 @@ This list is automatically updated by a GitHub action whenever any of the lists
|
||||
|
||||
## dsstorewordlist.txt
|
||||
|
||||
### Overview
|
||||
SOURCE: https://github.com/aels/subdirectories-discover
|
||||
|
||||
Perfect wordlist to discover directories and files on target site with tools like ffuf.
|
||||
|
||||
### Usage
|
||||
Use for: discovering directories and files
|
||||
|
||||
### Source
|
||||
Source: https://github.com/aels/subdirectories-discover
|
||||
|
||||
### References
|
||||
- It was collected by parsing Alexa top-million sites for **.DS_Store** files (https://en.wikipedia.org/wiki/.DS_Store), extracting all the found files, and then extracting found file and directory names from around 300k real websites.
|
||||
- Then sorted by probability and removed strings with one occurrence.
|
||||
- resulted file you can download is below. Happy Hunting!
|
||||
|
||||
## vulnerability-scan_j2ee-websites_WEB-INF.txt
|
||||
|
||||
### Overview
|
||||
Use for: discovering sensitive j2ee files exploiting a lfi
|
||||
|
||||
### References
|
||||
References:
|
||||
|
||||
- https://gist.github.com/harisec/519dc6b45c6b594908c37d9ac19edbc3
|
||||
- https://github.com/projectdiscovery/nuclei-templates/blob/master/vulnerabilities/generic/generic-j2ee-lfi.yaml
|
||||
- https://github.com/ilmila/J2EEScan/blob/master/src/main/java/burp/j2ee/issues/impl/LFIModule.java
|
||||
|
||||
@@ -1,55 +1 @@
|
||||
# URLs Wordlist
|
||||
|
||||
A wordlist of URLs for common systems that one may attack, e.g. WordPress, Drupal, etc.
|
||||
|
||||
## urls-Drupal-7.20.txt
|
||||
|
||||
### Overview
|
||||
This file contains URLs for Drupal 7.20.
|
||||
|
||||
### Usage
|
||||
Use for: populating a site tree with whitebox-like knowledge
|
||||
|
||||
### Source
|
||||
Source: Collected from various sources
|
||||
|
||||
## urls-joomla-3.0.3.txt
|
||||
|
||||
### Overview
|
||||
This file contains URLs for Joomla 3.0.3.
|
||||
|
||||
### Usage
|
||||
Use for: populating a site tree with whitebox-like knowledge
|
||||
|
||||
### Source
|
||||
Source: Collected from various sources
|
||||
|
||||
## urls-SAP.txt
|
||||
|
||||
### Overview
|
||||
This file contains URLs for SAP.
|
||||
|
||||
### Usage
|
||||
Use for: populating a site tree with whitebox-like knowledge
|
||||
|
||||
### Source
|
||||
Source: Collected from various sources
|
||||
|
||||
## urls-wordpress-3.3.1.txt
|
||||
|
||||
### Overview
|
||||
This file contains URLs for WordPress 3.3.1.
|
||||
|
||||
### Usage
|
||||
Use for: populating a site tree with whitebox-like knowledge
|
||||
|
||||
### Source
|
||||
Source: Collected from various sources
|
||||
|
||||
## Usage Instructions
|
||||
|
||||
1. Download the desired URL wordlist file.
|
||||
2. Use an intercepting proxy (e.g., Burp Suite) to pass the URLs through and populate a site tree with whitebox-like knowledge.
|
||||
3. Analyze the site tree to identify potential vulnerabilities and attack vectors.
|
||||
|
||||
|
||||
The URLs directory will hold numerous lists of URLs for common systems that one may attack, e.g. WordPress, Drupal, etc. These lists can be passed through an intercepting proxy in order to populate a site tree with whitebox-like knowledge.
|
||||
|
||||
@@ -1,105 +1,24 @@
|
||||
# API Wordlist
|
||||
|
||||
# api_wordlist
|
||||
A wordlist of API names used for fuzzing web application APIs.
|
||||
|
||||
## api_seen_in_wild.txt
|
||||
## Contents
|
||||
* api_seen_in_wild.txt - This contains API function names I've seen in the wild.
|
||||
* actions.txt - All API function name verbs
|
||||
* objects.txt - All API function name nouns
|
||||
* actions-uppercase.txt - API function name verbs with leading character upper-case
|
||||
* actions-lowercase.txt - API function name verbs with leading character lower-case
|
||||
* objects-uppercase.txt - API function name nouns with leading character upper-case
|
||||
* objects-lowercase.txt - API function name nouns with leading character lower-case
|
||||
* api-endpoints-res.txt - Combination of all of the files above
|
||||
|
||||
### Overview
|
||||
This file contains API function names that have been observed in the wild.
|
||||
|
||||
### Usage
|
||||
Use for: fuzzing web application APIs
|
||||
|
||||
### Source
|
||||
Source: Collected from various sources
|
||||
|
||||
## actions.txt
|
||||
|
||||
### Overview
|
||||
This file contains all API function name verbs.
|
||||
|
||||
### Usage
|
||||
Use for: fuzzing web application APIs
|
||||
|
||||
### Source
|
||||
Source: Collected from various sources
|
||||
|
||||
## objects.txt
|
||||
|
||||
### Overview
|
||||
This file contains all API function name nouns.
|
||||
|
||||
### Usage
|
||||
Use for: fuzzing web application APIs
|
||||
|
||||
### Source
|
||||
Source: Collected from various sources
|
||||
|
||||
## actions-uppercase.txt
|
||||
|
||||
### Overview
|
||||
This file contains API function name verbs with the leading character in upper-case.
|
||||
|
||||
### Usage
|
||||
Use for: fuzzing web application APIs
|
||||
|
||||
### Source
|
||||
Source: Collected from various sources
|
||||
|
||||
## actions-lowercase.txt
|
||||
|
||||
### Overview
|
||||
This file contains API function name verbs with the leading character in lower-case.
|
||||
|
||||
### Usage
|
||||
Use for: fuzzing web application APIs
|
||||
|
||||
### Source
|
||||
Source: Collected from various sources
|
||||
|
||||
## objects-uppercase.txt
|
||||
|
||||
### Overview
|
||||
This file contains API function name nouns with the leading character in upper-case.
|
||||
|
||||
### Usage
|
||||
Use for: fuzzing web application APIs
|
||||
|
||||
### Source
|
||||
Source: Collected from various sources
|
||||
|
||||
## objects-lowercase.txt
|
||||
|
||||
### Overview
|
||||
This file contains API function name nouns with the leading character in lower-case.
|
||||
|
||||
### Usage
|
||||
Use for: fuzzing web application APIs
|
||||
|
||||
### Source
|
||||
Source: Collected from various sources
|
||||
|
||||
## api-endpoints-res.txt
|
||||
|
||||
### Overview
|
||||
This file is a combination of all the files above.
|
||||
|
||||
### Usage
|
||||
Use for: fuzzing web application APIs
|
||||
|
||||
### Source
|
||||
Source: Collected from various sources
|
||||
|
||||
## Usage Instructions
|
||||
|
||||
1. In Burp Suite, send an API request you want to fuzz to Intruder.
|
||||
## Usage
|
||||
1. In burpsuite, send an API request you want to fuzz to Intruder.
|
||||
2. Remove the existing API function call, and replace it with two § characters for each text file you want to use.
|
||||
3. On the "Positions" tab, set Attack type to "Cluster Bomb".
|
||||
4. On the "Payloads" tab, select 1 for the first Payload set drop-down, then select a Payload type of "Runtime file" and navigate to the directory you downloaded these text files to. Select "actions.txt".
|
||||
4. On the "Payloads" tab, select 1 for the fist Payload set drop-down, then select a Payload type of "Runtime file" and navigate to the directory you downloaded these text files to. Select "actions.txt".
|
||||
5. Repeat step 4 by setting Payload set 2 to "objects.txt".
|
||||
6. (Optional step - add more payload sets and set them to "objects.txt" to test for multi-part objects like "UserAccount")
|
||||
7. Start the attack!
|
||||
6. (optional step - add more payload sets and set them to "objects.txt" to test for multi-part objects like "UserAccount")
|
||||
7. Start attack!
|
||||
|
||||
## Comments
|
||||
|
||||
If you use this and it's helpful, I'd love to hear about it! (@dagorim). If you think I've missed any obvious word choices, I'd love to hear about that as well, or feel free to add them.
|
||||
|
||||
@@ -1365,6 +1365,7 @@ d
|
||||
da
|
||||
daemon
|
||||
daily
|
||||
daloradius
|
||||
dan
|
||||
dana-na
|
||||
dark
|
||||
@@ -2069,6 +2070,8 @@ header_logo
|
||||
headers
|
||||
headlines
|
||||
health
|
||||
health/live
|
||||
health/ready
|
||||
healthz
|
||||
healthcare
|
||||
hello
|
||||
@@ -3974,6 +3977,7 @@ statistik
|
||||
stats
|
||||
statshistory
|
||||
status
|
||||
status/ready
|
||||
statusicon
|
||||
stock
|
||||
stoneedge
|
||||
|
||||
@@ -1,3 +1,11 @@
|
||||
caches
|
||||
conditions
|
||||
integrationgraph
|
||||
scheduledtasks
|
||||
sessions
|
||||
prometheus
|
||||
quartz
|
||||
startup
|
||||
trace
|
||||
health
|
||||
loggers
|
||||
|
||||
@@ -180,7 +180,6 @@ $rpc/google.internal.maps.mapsjs.v1.MapsJsInternalService
|
||||
/search/*?q=
|
||||
/search?q=
|
||||
/security/search-results.aspx?
|
||||
/stats?id=
|
||||
/store/*/layout/
|
||||
/store/*/search/
|
||||
/store/buynow?
|
||||
@@ -1440,8 +1439,8 @@ hotels/rpc
|
||||
hotfix/
|
||||
hp/video
|
||||
hpc/*/supported-applications.aspx?
|
||||
http://ncbi.nlm.nih.gov/robots.txt
|
||||
http://support.microsoft.com/robots.txt
|
||||
http://blog.google/robots.txt
|
||||
http://x.com/robots.txt
|
||||
hub?category=
|
||||
hz/contact-us/ajax/initiate-trusted-contact
|
||||
hz/help/contact/*/message/$
|
||||
@@ -1938,6 +1937,7 @@ rd/search$
|
||||
rd/search?
|
||||
recharge/dashboard/car
|
||||
recharge/dashboard/static
|
||||
recipes/*?q=
|
||||
recipes/search
|
||||
reconnect
|
||||
recover
|
||||
@@ -2072,6 +2072,7 @@ shopping/ratings/merchant/immersivedetails
|
||||
shopping/reviewer
|
||||
shopping/search
|
||||
shopping/seller
|
||||
shopping/shoppingpage/casa
|
||||
shopping/suppliers/search
|
||||
shopping?
|
||||
shopstream
|
||||
@@ -2577,6 +2578,8 @@ travel/2013/aug/22/been-there-readers-competition?
|
||||
travel/clk
|
||||
travel/entity
|
||||
travel/flights/s
|
||||
travel/hotels/*/entity
|
||||
travel/hotels/*/stories
|
||||
travel/hotels/entity
|
||||
travel/hotels/stories
|
||||
travel/search
|
||||
@@ -2970,7 +2973,7 @@ wiki/Wikipedia_Diskussion:Checkuser
|
||||
wiki/Wikipedia_Diskussion:Spam-Blacklist-Log
|
||||
wiki/Wikipedia_talk%3AAbuse_reports
|
||||
wiki/Wikipedia_talk%3AAbuse_response
|
||||
wiki/Wikipedia_talk%3AAdministrator_electionshttp://goo.gl/robots.txt
|
||||
wiki/Wikipedia_talk%3AAdministrator_electionshttp://itunes.apple.com/robots.txt
|
||||
wiki/Wikipedia_talk%3AAdministrator_recall
|
||||
wiki/Wikipedia_talk%3AAdministrator_review
|
||||
wiki/Wikipedia_talk%3AAdministrators%27_noticeboard
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user