8 lines
430 B
Bash
8 lines
430 B
Bash
#!/bin/bash
|
|
grep -rln "weval_auth" /var/www/html/api/ 2>/dev/null | head -5
|
|
grep -rln "weval_auth" /var/www/html/*.php 2>/dev/null | head -5
|
|
# Check sso-auth or authentik callback files
|
|
ls /var/www/html/api/sso* /var/www/html/api/*auth* 2>/dev/null
|
|
# How does Playwright do authed tests in existing WEVIA tests?
|
|
grep -l "login\|PHPSESSID\|authenticated\|authed" /var/www/html/api/v*.js /opt/weval-l99/*.py 2>/dev/null | head -5
|