FLuxion 5.8
- minor language tweaks - tweak cs language thanks to Strejda - remove mdk3 since it is not usable anymore - add mdk4 as dependency - change default permissions - update revision number
This commit is contained in:
parent
49fd80ebd2
commit
fe14a046b4
|
@ -1501,20 +1501,11 @@ start_attack() {
|
|||
CaptivePortalJammerServiceXtermPID=$!
|
||||
else
|
||||
|
||||
if ! [ -x "$(command -v mdk4)" ];then
|
||||
xterm $FLUXIONHoldXterm $BOTTOMRIGHT -bg black -fg "#FF0009" \
|
||||
-title "FLUXION AP Jammer Service [$FluxionTargetSSID]" -e \
|
||||
"mdk3 $CaptivePortalJammerInterface d -c $FluxionTargetChannel -b \"$FLUXIONWorkspacePath/mdk3_blacklist.lst\"" &
|
||||
# Save parent's pid, to get to child later.
|
||||
CaptivePortalJammerServiceXtermPID=$!
|
||||
|
||||
else
|
||||
xterm $FLUXIONHoldXterm $BOTTOMRIGHT -bg black -fg "#FF0009" \
|
||||
-title "FLUXION AP Jammer Service [$FluxionTargetSSID]" -e \
|
||||
"mdk4 $CaptivePortalJammerInterface d -c $FluxionTargetChannel -b \"$FLUXIONWorkspacePath/mdk3_blacklist.lst\"" &
|
||||
# Save parent's pid, to get to child later.
|
||||
CaptivePortalJammerServiceXtermPID=$!
|
||||
fi
|
||||
|
||||
fi
|
||||
|
||||
|
|
|
@ -1,34 +1,34 @@
|
|||
#!/usr/bin/env bash
|
||||
# identifier: Portugalský Portál
|
||||
# description: Vytvoří přístupový bod "zlý dvojče".
|
||||
# identifier: Captive Portal
|
||||
# description: Vytvoří přístupový bod "Evil Twin".
|
||||
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
CaptivePortalJammerInterfaceQuery="Select an interface for jamming."
|
||||
CaptivePortalAccessPointInterfaceQuery="Select an interface for the access point."
|
||||
CaptivePortalCannotStartInterfaceError="${CRed}Unable to start captive portal interface$CClr, returning!"
|
||||
CaptivePortalStaringAPServiceNotice="Starting Captive Portal access point service..."
|
||||
CaptivePortalStaringAPRoutesNotice="Starting Captive Portal access point routes..."
|
||||
CaptivePortalStartingDHCPServiceNotice="Starting access point DHCP service as daemon..."
|
||||
CaptivePortalStartingDNSServiceNotice="Starting access point DNS service as daemon..."
|
||||
CaptivePortalStartingWebServiceNotice="Starting access point captive portal as daemon..."
|
||||
CaptivePortalStartingJammerServiceNotice="Starting access point jammer as daemon..."
|
||||
CaptivePortalStartingAuthenticatorServiceNotice="Starting authenticator script..."
|
||||
CaptivePortalJammerInterfaceQuery="Vyberte rozhraní pro rušení."
|
||||
CaptivePortalAccessPointInterfaceQuery="Vyberte rozhraní pro přístupový bod."
|
||||
CaptivePortalCannotStartInterfaceError="${CRed}Nebylo možné spustit rozhraní Captive Portalu$CClr, vracím se!"
|
||||
CaptivePortalStaringAPServiceNotice="Spouštím službu Captive Portal přístupového bodu..."
|
||||
CaptivePortalStaringAPRoutesNotice="Spouštím cesty pro Captive Portal přístupového bodu..."
|
||||
CaptivePortalStartingDHCPServiceNotice="Spouštím službu DHCP přístupového bodu jako daemon..."
|
||||
CaptivePortalStartingDNSServiceNotice="Spouštím službu DNS přístupového bodu jako daemon..."
|
||||
CaptivePortalStartingWebServiceNotice="Spouštím Captive Portal přístupového bodu jako daemon..."
|
||||
CaptivePortalStartingJammerServiceNotice="Spouštím rušení přístupového bodu jako daemon..."
|
||||
CaptivePortalStartingAuthenticatorServiceNotice="Spouštím skript autentizátoru..."
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
CaptivePortalAPServiceQuery="Select an access point service"
|
||||
CaptivePortalAPServiceHostapdOption="Rogue AP - hostapd (${CGrn}recommended$CClr)"
|
||||
CaptivePortalAPServiceAirbaseOption="Rogue AP - airbase-ng (${CYel}slow$CClr)"
|
||||
CaptivePortalAPServiceQuery="Vyberte typ služby přístupového bodu"
|
||||
CaptivePortalAPServiceHostapdOption="Rogue AP - hostapd (${CGrn}doporučeno$CClr)"
|
||||
CaptivePortalAPServiceAirbaseOption="Rogue AP - airbase-ng (${CYel}pomalé$CClr)"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
CaptivePortalVerificationMethodQuery="METHODA ZÍSKÁNÍ HESLA"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
CaptivePortalCertificateSourceQuery="Select SSL certificate source for captive portal."
|
||||
CaptivePortalCertificateSourceGenerateOption="Create an SSL certificate"
|
||||
CaptivePortalCertificateSourceRescanOption="Detect SSL certificate (${CClr}search again$CGry)"
|
||||
CaptivePortalCertificateSourceDisabledOption="None (${CYel}disable SSL$CGry)"
|
||||
CaptivePortalCertificateSourceQuery="Vyberte zdroj SSL certifikátu pro Captive Portal."
|
||||
CaptivePortalCertificateSourceGenerateOption="Vytvořit SSL certifikát"
|
||||
CaptivePortalCertificateSourceRescanOption="Zjistit SSL certifikát (${CClr}hledat znovu$CGry)"
|
||||
CaptivePortalCertificateSourceDisabledOption="Žádný (${CYel}zakázat SSL$CGry)"
|
||||
CaptivePortalUIQuery="Select a captive portal interface for the rogue network."
|
||||
CaptivePortalGenericInterfaceOption="Generic Portal"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
CaptivePortalConnectivityQuery="Select an internet connectivity type for the rogue network."
|
||||
CaptivePortalConnectivityDisconnectedOption="disconnected (${CGrn}recommended$CClr)"
|
||||
CaptivePortalConnectivityDisconnectedOption="disconnected (${CGrn}doporučeno$CClr)"
|
||||
CaptivePortalConnectivityEmulatedOption="emulated"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
|
||||
|
|
|
@ -1,31 +1,31 @@
|
|||
#!/usr/bin/env bash
|
||||
# identifier: Handshake Snooper
|
||||
# description: Acquires WPA/WPA2 encryption hashes. (translate)
|
||||
# description: Získává šifrovací hash WPA/WPA2.
|
||||
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
HandshakeSnooperJammerInterfaceQuery="Select an interface for monitoring & jamming."
|
||||
HandshakeSnooperJammerInterfaceQuery="Vyberte rozhraní pro monitorování/rušení."
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
HandshakeSnooperMethodQuery="Select a method of handshake retrieval"
|
||||
HandshakeSnooperMonitorMethodOption="Monitor (${CYel}passive$CClr)"
|
||||
HandshakeSnooperAireplayMethodOption="aireplay-ng deauthentication (${CRed}aggressive$CClr)"
|
||||
HandshakeSnooperMdk3MethodOption="mdk3 deauthentication (${CRed}aggressive$CClr)"
|
||||
HandshakeSnooperMethodQuery="Vyberte metodu získání handshaku"
|
||||
HandshakeSnooperMonitorMethodOption="Monitor (${CYel}pasivní$CClr)"
|
||||
HandshakeSnooperAireplayMethodOption="aireplay-ng deauthentication (${CRed}agresivní$CClr)"
|
||||
HandshakeSnooperMdk3MethodOption="mdk3 deauthentication (${CRed}agresivní$CClr)"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
HandshakeSnooperVerifierIntervalQuery="How often should the verifier check for a handshake?"
|
||||
HandshakeSnooperVerifierInterval30SOption="Every 30 seconds (${CGrn}recommended${CClr})."
|
||||
HandshakeSnooperVerifierInterval60SOption="Every 60 seconds."
|
||||
HandshakeSnooperVerifierInterval90SOption="Every 90 seconds."
|
||||
HandshakeSnooperVerifierIntervalQuery="Jak často kontrolovat získání handshaku?"
|
||||
HandshakeSnooperVerifierInterval30SOption="Každých 30 vteřin (${CGrn}doporučeno${CClr})."
|
||||
HandshakeSnooperVerifierInterval60SOption="Každých 60 vteřin."
|
||||
HandshakeSnooperVerifierInterval90SOption="Každých 90 vteřin."
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
HandshakeSnooperVerifierSynchronicityQuery="How should verification occur?"
|
||||
HandshakeSnooperVerifierSynchronicityAsynchronousOption="Asynchronously (${CYel}fast systems only${CClr})."
|
||||
HandshakeSnooperVerifierSynchronicitySynchronousOption="Synchronously (${CGrn}recommended${CClr})."
|
||||
HandshakeSnooperVerifierSynchronicityQuery="Jak by mělo dojít k ověření?"
|
||||
HandshakeSnooperVerifierSynchronicityAsynchronousOption="Asynchronně (${CYel}pouze pro rychlé PC${CClr})."
|
||||
HandshakeSnooperVerifierSynchronicitySynchronousOption="Synchronně (${CGrn}doporučeno${CClr})."
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
HandshakeSnooperStartingArbiterNotice="${CCyn}Handshake Snooper$CClr arbiter daemon running."
|
||||
HandshakeSnooperStartingArbiterNotice="${CCyn}Handshake Snooper$CClr daemon běží."
|
||||
HandshakeSnooperSnoopingForNSecondsNotice="Snooping for \$HandshakeSnooperVerifierInterval seconds."
|
||||
HandshakeSnooperStoppingForVerifierNotice="Stopping snooper & checking for hashes."
|
||||
HandshakeSnooperSearchingForHashesNotice="Searching for hashes in the capture file."
|
||||
HandshakeSnooperArbiterAbortedWarning="${CYel}Aborted${CClr}: The operation's been aborted, no valid hash was found."
|
||||
HandshakeSnooperArbiterSuccededNotice="${CGrn}Success${CClr}: A valid hash was detected and saved to fluxion's database."
|
||||
HandshakeSnooperArbiterCompletedTip="${CBCyn}Handshake Snooper$CBYel attack completed, close this window and start another attack.$CClr"
|
||||
HandshakeSnooperStoppingForVerifierNotice="Zastavuji snooper & kontroluji hashe."
|
||||
HandshakeSnooperSearchingForHashesNotice="Hledám hashe v zachyceném souboru."
|
||||
HandshakeSnooperArbiterAbortedWarning="${CYel}Přerušeno${CClr}: Operace byla přerušena, nebyl nalezen žádný platný hash."
|
||||
HandshakeSnooperArbiterSuccededNotice="${CGrn}Úspěch${CClr}: Platný hash byl detekován a uložen do databáze fluxionu."
|
||||
HandshakeSnooperArbiterCompletedTip="Útok ${CBCyn}Handshake Snooper$CBYel dokončen, zavřete toto okno a začněte další útok.$CClr"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
|
||||
# FLUXSCRIPT END
|
||||
|
|
|
@ -22,7 +22,7 @@ readonly FLUXIONNoiseFloor=-90
|
|||
readonly FLUXIONNoiseCeiling=-60
|
||||
|
||||
readonly FLUXIONVersion=5
|
||||
readonly FLUXIONRevision=7
|
||||
readonly FLUXIONRevision=8
|
||||
|
||||
# Declare window ration bigger = smaller windows
|
||||
FLUXIONWindowRatio=4
|
||||
|
@ -280,7 +280,7 @@ fluxion_startup() {
|
|||
local requiredCLITools=(
|
||||
"aircrack-ng" "bc" "awk:awk|gawk|mawk"
|
||||
"curl" "cowpatty" "dhcpd:isc-dhcp-server|dhcp" "7zr:p7zip" "hostapd" "lighttpd"
|
||||
"iwconfig:wireless-tools" "macchanger" "mdk3" "nmap" "openssl"
|
||||
"iwconfig:wireless-tools" "macchanger" "mdk4" "nmap" "openssl"
|
||||
"php-cgi" "pyrit" "xterm" "rfkill" "unzip" "route:net-tools"
|
||||
"fuser:psmisc" "killall:psmisc"
|
||||
)
|
||||
|
|
124
language/cs.sh
124
language/cs.sh
|
@ -3,93 +3,93 @@
|
|||
# native: čeština
|
||||
|
||||
FLUXIONInterfaceQuery="Vyberte rozhraní"
|
||||
FLUXIONAllocatingInterfaceNotice="Allocating reserved interface $CGrn\"\$interfaceIdentifier\"."
|
||||
FLUXIONDeallocatingInterfaceNotice="Deallocating reserved interface $CGrn\"\$interfaceIdentifier\"."
|
||||
FLUXIONInterfaceAllocatedNotice="${CGrn}Interface allocation succeeded!"
|
||||
FLUXIONInterfaceAllocationFailedError="${CRed}Interface reservation failed!"
|
||||
FLUXIONReidentifyingInterface="Renaming interface."
|
||||
FLUXIONUnblockingWINotice="Unblocking all wireless interfaces..."
|
||||
#FLUXIONFindingExtraWINotice="Looking for extraneous wireless interfaces..."
|
||||
FLUXIONRemovingExtraWINotice="Removing extraneous wireless interfaces..."
|
||||
FLUXIONFindingWINotice="Looking for available wireless interfaces..."
|
||||
FLUXIONSelectedBusyWIError="The wireless interface selected appears to be currently in use!"
|
||||
FLUXIONSelectedBusyWITip="This is usually caused by the network manager using the interface selected. We recommened you$CGrn gracefully stop the network manager$CClr or configure it to ignored the selected interface. Alternatively, run \"export FLUXIONWIKillProcesses=1\" before fluxion to kill it but we suggest you$CRed avoid using the killer flag${CClr}."
|
||||
FLUXIONGatheringWIInfoNotice="Gathering interface information..."
|
||||
FLUXIONUnknownWIDriverError="Unable to determine interface driver!"
|
||||
FLUXIONUnloadingWIDriverNotice="Waiting for interface \"\$interface\" to unload..."
|
||||
FLUXIONLoadingWIDriverNotice="Waiting for interface \"\$interface\" to load..."
|
||||
FLUXIONFindingConflictingProcessesNotice="Looking for notorious services..."
|
||||
FLUXIONKillingConflictingProcessesNotice="Killing notorious services..."
|
||||
FLUXIONPhysicalWIDeviceUnknownError="${CRed}Unable to determine interface's physical device!"
|
||||
FLUXIONStartingWIMonitorNotice="Starting monitor interface..."
|
||||
FLUXIONAllocatingInterfaceNotice="Přidělení vyhrazeného rozhraní $CGrn\"\$interfaceIdentifier\"."
|
||||
FLUXIONDeallocatingInterfaceNotice="Vymezení vyhrazeného rozhraní $CGrn\"\$interfaceIdentifier\"."
|
||||
FLUXIONInterfaceAllocatedNotice="${CGrn}Přidělení rozhraní proběhlo úspěšně!"
|
||||
FLUXIONInterfaceAllocationFailedError="${CRed}Přidělení rozhraní selhalo!"
|
||||
FLUXIONReidentifyingInterface="Přejmenovávám rozhraní."
|
||||
FLUXIONUnblockingWINotice="Odblokování všech bezdrátových rozhraní..."
|
||||
#FLUXIONFindingExtraWINotice="Hledám cizí bezdrátová rozhraní..."
|
||||
FLUXIONRemovingExtraWINotice="Odstraňuji cizí bezdrátová rozhraní..."
|
||||
FLUXIONFindingWINotice="Hledám dostupná bezdrátová rozhraní..."
|
||||
FLUXIONSelectedBusyWIError="Vybrané bezdrátové rozhraní je momentálně používáno!"
|
||||
FLUXIONSelectedBusyWITip="To je obvykle způsobeno používáním vybraného rozhraní službou Network Manager. Doporučujeme$CGrn bezpečně zastavit Network Manager,$CClr nebo službu nakonfigurovat, aby vybrané rozhraní ignorovala. Nebo fluxion spusťte s atributem \"export FLUXIONWIKillProcesses=1\" k zastavení všech konfliktních procesů, ale doporučujeme $CRed se atributu kill vyhnout${CClr}."
|
||||
FLUXIONGatheringWIInfoNotice="Shromažďování informací o rozhraní..."
|
||||
FLUXIONUnknownWIDriverError="Nelze určit ovladač rozhraní!"
|
||||
FLUXIONUnloadingWIDriverNotice="Čekám na odpojení rozhraní \"\$interface\"..."
|
||||
FLUXIONLoadingWIDriverNotice="Čekám na načtení rozhraní \"\$interface\"..."
|
||||
FLUXIONFindingConflictingProcessesNotice="Hledám konfliktní procesy..."
|
||||
FLUXIONKillingConflictingProcessesNotice="Zastavování konfliktních procesů..."
|
||||
FLUXIONPhysicalWIDeviceUnknownError="${CRed}Nelze určit fyzické zařízení rozhraní!"
|
||||
FLUXIONStartingWIMonitorNotice="Spouštím monitorování rozhraní..."
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONTargetSearchingInterfaceQuery="Select a wireless interface for target searching."
|
||||
FLUXIONTargetTrackerInterfaceQuery="Select a wireless interface for target tracking."
|
||||
FLUXIONTargetTrackerInterfaceQueryTip="${CSYel}Choosing a dedicated interface may be required.$CClr"
|
||||
FLUXIONTargetTrackerInterfaceQueryTip2="${CBRed}If you're unsure, choose \"${CBYel}Skip${CBRed}\"!$CClr"
|
||||
FLUXIONIncompleteTargettingInfoNotice="Missing ESSID, BSSID, or channel information!"
|
||||
FLUXIONTargettingAccessPointAboveNotice="Fluxion is targetting the access point above."
|
||||
FLUXIONContinueWithTargetQuery="Continue with this target?"
|
||||
FLUXIONTargetSearchingInterfaceQuery="Vyberte rozhraní pro vyhledávání cíle."
|
||||
FLUXIONTargetTrackerInterfaceQuery="Vyberte rozhraní pro sledování cíle."
|
||||
FLUXIONTargetTrackerInterfaceQueryTip="${CSYel}Může být nutné zvolit vyhrazené rozhraní.$CClr"
|
||||
FLUXIONTargetTrackerInterfaceQueryTip2="${CBRed}Pokud si nejste jistý, vyberte \"${CBYel}Přeskočit${CBRed}\"!$CClr"
|
||||
FLUXIONIncompleteTargettingInfoNotice="Chybí informace o ESSID, BSSID, nebo kanálu!"
|
||||
FLUXIONTargettingAccessPointAboveNotice="Fluxion se zaměřuje na zmíněný přístupový bod."
|
||||
FLUXIONContinueWithTargetQuery="Pokračovat s tímto cílem?"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONStartingScannerNotice="Starting scanner, please wait..."
|
||||
FLUXIONStartingScannerTip="Five seconds after the target AP appears, close the FLUXION Scanner (ctrl+c)."
|
||||
FLUXIONPreparingScannerResultsNotice="Synthesizing scan results, please wait..."
|
||||
FLUXIONScannerFailedNotice="Wireless card may not be supported (no APs found)"
|
||||
FLUXIONScannerDetectedNothingNotice="No access points were detected, returning..."
|
||||
FLUXIONStartingScannerNotice="Spouštím skener, prosím čekejte..."
|
||||
FLUXIONStartingScannerTip="5 vteřin po zobrazení cílů, zavřete FLUXION Scanner (Ctrl+C)."
|
||||
FLUXIONPreparingScannerResultsNotice="Synchronizuji výsledky skenování, prosím čekejte..."
|
||||
FLUXIONScannerFailedNotice="Bezdrátová karta nemusí být podporována (žádné přístupové body nenalezeny)"
|
||||
FLUXIONScannerDetectedNothingNotice="Žádné přístupové body nenalezeny, vracím se..."
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONHashFileDoesNotExistError="Hash file does not exist!"
|
||||
FLUXIONHashInvalidError="${CRed}Error$CClr, invalid hash file!"
|
||||
FLUXIONHashValidNotice="${CGrn}Success$CClr, hash verification completed!"
|
||||
FLUXIONPathToHandshakeFileQuery="Enter path to handshake file $CClr(Example: /.../dump-01.cap)"
|
||||
FLUXIONPathToHandshakeFileReturnTip="To go back, leave the hash path blank."
|
||||
FLUXIONAbsolutePathInfo="Absolute path"
|
||||
FLUXIONEmptyOrNonExistentHashError="${CRed}Error$CClr, path points to non-existing or empty hash file."
|
||||
FLUXIONHashFileDoesNotExistError="Soubor s hashem neexistuje!"
|
||||
FLUXIONHashInvalidError="${CRed}Chyba$CClr, neplatný hash soubor!"
|
||||
FLUXIONHashValidNotice="${CGrn}Úspěch$CClr, ověření hashe dokončeno!"
|
||||
FLUXIONPathToHandshakeFileQuery="Zadejte cestu k handshake souboru $CClr(např.: /.../dump-01.cap)"
|
||||
FLUXIONPathToHandshakeFileReturnTip="Vraťte se zpět a nechte cestu k hashi prázdnou."
|
||||
FLUXIONAbsolutePathInfo="Absolutní cesta"
|
||||
FLUXIONEmptyOrNonExistentHashError="${CRed}Chyba$CClr, cesta vede k neexistujícímu, nebo prázdnému hash souboru."
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONScannerChannelQuery="Vyberte kanál"
|
||||
FLUXIONScannerChannelOptionAll="Všechny kanály"
|
||||
FLUXIONScannerChannelOptionSpecific="Specifický kanál(y)"
|
||||
FLUXIONScannerChannelOptionSpecific="Specifický kanál"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONScannerChannelSingleTip="Jeden kanál"
|
||||
FLUXIONScannerChannelMiltipleTip="Více kanálů"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONScannerHeader="Sledování WIFI"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONHashSourceQuery="Select a method to retrieve the handshake"
|
||||
FLUXIONHashSourcePathOption="Path to capture file"
|
||||
FLUXIONHashSourceRescanOption="Handshake directory (rescan)"
|
||||
FLUXIONFoundHashNotice="A hash for the target AP was found."
|
||||
FLUXIONUseFoundHashQuery="Do you want to use this file?"
|
||||
FLUXIONUseFoundHashOption="Use hash found"
|
||||
FLUXIONSpecifyHashPathOption="Specify path to hash"
|
||||
FLUXIONHashVerificationMethodQuery="Select a method of verification for the hash"
|
||||
FLUXIONHashSourceQuery="Vyberte metodu získání handshaku"
|
||||
FLUXIONHashSourcePathOption="Cesta k zachycenému souboru"
|
||||
FLUXIONHashSourceRescanOption="Znovu prohledat datábázi"
|
||||
FLUXIONFoundHashNotice="Hash pro přístupový bod byl nalezen."
|
||||
FLUXIONUseFoundHashQuery="Chcete použít tento soubor?"
|
||||
FLUXIONUseFoundHashOption="Použít nalezený hash"
|
||||
FLUXIONSpecifyHashPathOption="Upřesnit cestu k hashi"
|
||||
FLUXIONHashVerificationMethodQuery="Vyberte metodu ověření hashe"
|
||||
FLUXIONHashVerificationMethodPyritOption="pyrit verification"
|
||||
FLUXIONHashVerificationMethodAircrackOption="aircrack-ng verification (${CYel}unreliable$CClr)"
|
||||
FLUXIONHashVerificationMethodCowpattyOption="cowpatty verification (${CGrn}recommended$CClr)"
|
||||
FLUXIONHashVerificationMethodAircrackOption="aircrack-ng verification (${CYel}nespolehlivé$CClr)"
|
||||
FLUXIONHashVerificationMethodCowpattyOption="cowpatty verification (${CGrn}doporučeno$CClr)"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONAttackQuery="Select a wireless attack for the access point"
|
||||
FLUXIONAttackInProgressNotice="${CCyn}\$FluxionAttack$CClr attack in progress..."
|
||||
FLUXIONSelectAnotherAttackOption="Select another attack"
|
||||
FLUXIONAttackResumeQuery="This attack has already been configured."
|
||||
FLUXIONAttackRestoreOption="Restore attack"
|
||||
FLUXIONAttackResetOption="Reset attack"
|
||||
FLUXIONAttackQuery="Vyberte typ útoku na přístupový bod"
|
||||
FLUXIONAttackInProgressNotice="Probíhá ${CCyn}\$FluxionAttack$CClr útok..."
|
||||
FLUXIONSelectAnotherAttackOption="Vybrat další útok"
|
||||
FLUXIONAttackResumeQuery="Tento útok již byl nakonfigurován."
|
||||
FLUXIONAttackRestoreOption="Obnovit útok"
|
||||
FLUXIONAttackResetOption="Nastavit znovu"
|
||||
FLUXIONAttackRestartOption="Restart"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONGeneralSkipOption="${CYel}Skip"
|
||||
FLUXIONGeneralSkipOption="${CYel}Přeskočit"
|
||||
FLUXIONGeneralBackOption="${CRed}Zpět"
|
||||
FLUXIONGeneralExitOption="${CRed}Exit"
|
||||
FLUXIONGeneralRepeatOption="${CRed}Repeat"
|
||||
FLUXIONGeneralExitOption="${CRed}Zavřít"
|
||||
FLUXIONGeneralRepeatOption="${CRed}Opakovat"
|
||||
FLUXIONGeneralNotFoundError="Nenalezeno"
|
||||
FLUXIONGeneralXTermFailureError="${CRed}Failed to start xterm session (possible misconfiguration)."
|
||||
FLUXIONGeneralXTermFailureError="${CRed}Nepodařilo se spustit xterm relaci (možná nesprávná konfigurace)."
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONCleanupAndClosingNotice="Čištění a zavírání"
|
||||
FLUXIONKillingProcessNotice="Killing ${CGry}\$targetID$CClr"
|
||||
FLUXIONRestoringPackageManagerNotice="Restoring ${CCyn}\$PackageManagerCLT$CClr"
|
||||
FLUXIONKillingProcessNotice="Zavírání ${CGry}\$targetID$CClr"
|
||||
FLUXIONRestoringPackageManagerNotice="Obnovování ${CCyn}\$PackageManagerCLT$CClr"
|
||||
FLUXIONDisablingMonitorNotice="Vypínání monitorovacího rozhraní"
|
||||
FLUXIONDisablingExtraInterfacesNotice="Vypínání rozhraní"
|
||||
FLUXIONDisablingPacketForwardingNotice="Vypínání ${CGry}směrování packetů"
|
||||
FLUXIONDisablingCleaningIPTablesNotice="Čištění ${CGry}iptables"
|
||||
FLUXIONRestoringTputNotice="Obnovování ${CGry}tput"
|
||||
FLUXIONDeletingFilesNotice="Deleting ${CGry}files"
|
||||
FLUXIONDeletingFilesNotice="Mazání ${CGry}souborů"
|
||||
FLUXIONRestartingNetworkManagerNotice="Restartování ${CGry}Network-Manager"
|
||||
FLUXIONCleanupSuccessNotice="Vyčištění proběhlo úspěšně!"
|
||||
FLUXIONThanksSupportersNotice="Děkujeme pro používání programu fluxion"
|
||||
|
|
Loading…
Reference in New Issue