├── .gitattributes ├── .gitignore ├── .idea ├── .gitignore ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── compiler.xml ├── gradle.xml ├── jarRepositories.xml ├── kotlinc.xml ├── misc.xml └── vcs.xml ├── LICENSE ├── README.md ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle.kts └── src └── main └── kotlin ├── CorsCheckExtension.kt ├── CorsScannerCheck.kt ├── CustomContextMenuItemsProvider.kt ├── TrustedDomainCheck.kt ├── TrustedDomainValidationBypassCheck.kt └── Utilities.kt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Outpost24/outpost24-cors-check/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Outpost24/outpost24-cors-check/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Outpost24/outpost24-cors-check/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Outpost24/outpost24-cors-check/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Outpost24/outpost24-cors-check/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Outpost24/outpost24-cors-check/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Outpost24/outpost24-cors-check/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Outpost24/outpost24-cors-check/HEAD/.idea/kotlinc.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Outpost24/outpost24-cors-check/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Outpost24/outpost24-cors-check/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Outpost24/outpost24-cors-check/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Outpost24/outpost24-cors-check/HEAD/README.md -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Outpost24/outpost24-cors-check/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Outpost24/outpost24-cors-check/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Outpost24/outpost24-cors-check/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Outpost24/outpost24-cors-check/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Outpost24/outpost24-cors-check/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Outpost24/outpost24-cors-check/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /src/main/kotlin/CorsCheckExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Outpost24/outpost24-cors-check/HEAD/src/main/kotlin/CorsCheckExtension.kt -------------------------------------------------------------------------------- /src/main/kotlin/CorsScannerCheck.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Outpost24/outpost24-cors-check/HEAD/src/main/kotlin/CorsScannerCheck.kt -------------------------------------------------------------------------------- /src/main/kotlin/CustomContextMenuItemsProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Outpost24/outpost24-cors-check/HEAD/src/main/kotlin/CustomContextMenuItemsProvider.kt -------------------------------------------------------------------------------- /src/main/kotlin/TrustedDomainCheck.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Outpost24/outpost24-cors-check/HEAD/src/main/kotlin/TrustedDomainCheck.kt -------------------------------------------------------------------------------- /src/main/kotlin/TrustedDomainValidationBypassCheck.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Outpost24/outpost24-cors-check/HEAD/src/main/kotlin/TrustedDomainValidationBypassCheck.kt -------------------------------------------------------------------------------- /src/main/kotlin/Utilities.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Outpost24/outpost24-cors-check/HEAD/src/main/kotlin/Utilities.kt --------------------------------------------------------------------------------