├── .config.old ├── LICENSE ├── README.md ├── asterisk.sh ├── asterisk ├── Dockerfile ├── docker-compose.yml ├── extensions.conf ├── modules.conf ├── run.sh └── sip.conf ├── choose_interface.sh ├── dns_forward.sh ├── init_pyenv.sh ├── ipdev ├── openlte.sh ├── openlte_redir_install ├── Dockerfile ├── docker-compose.yml └── uhd.patch ├── operator ├── osmo_egprs ├── Dockerfile ├── configs │ ├── README.md │ ├── apn0.service │ ├── bladerf_osmo-trx.patch │ ├── entrypoint.sh │ ├── garbage_1 │ ├── gsn_restart │ ├── ipdev │ ├── libresdr_b210.bin │ ├── nextip │ ├── old_route │ ├── operator │ ├── osmo-all.sh │ ├── osmo-bsc.cfg │ ├── osmo-bts.cfg │ ├── osmo-bts.service │ ├── osmo-ggsn.cfg │ ├── osmo-ggsn.service │ ├── osmo-hlr.cfg │ ├── osmo-mgw.cfg │ ├── osmo-mgw.service │ ├── osmo-msc.cfg │ ├── osmo-pcu.cfg │ ├── osmo-pcu.service │ ├── osmo-sgsn.cfg │ ├── osmo-sgsn_custom-sccp.cfg │ ├── osmo-sip-connector.cfg │ ├── osmo-stp.cfg │ ├── osmo-trx.cfg │ ├── osmo-trx.service │ ├── osmo-upf.cfg │ ├── osmo_bsc.cfg │ ├── osmo_interface │ ├── route │ ├── run.sh │ ├── runonce.sh │ ├── sms.db │ ├── test.patch │ └── tun.sh ├── docker-compose.yml ├── entrypoint.sh ├── libresdr_b210.bin ├── operator ├── osmo-all.sh ├── osmo-bsc.cfg ├── osmo-bts.cfg ├── osmo-ggsn.cfg ├── osmo-hlr.cfg ├── osmo-mgw.cfg ├── osmo-msc.cfg ├── osmo-pcu.cfg ├── osmo-sgsn.cfg ├── osmo-sgsn_custom-sccp.cfg ├── osmo-sip-connector.cfg ├── osmo-stp.cfg ├── osmo-trx.cfg ├── osmo-upf.cfg ├── osmo_bsc.cfg ├── route ├── run.sh ├── runonce.sh ├── scripts │ ├── .config │ ├── .config.old │ ├── entrypoint.sh │ ├── osmo-all.sh │ ├── run.sh │ ├── runonce.sh │ └── tun.sh ├── tun.sh └── uhd-usrp.rules ├── osmocom.sh ├── osmocom_installation ├── Dockerfile ├── bladerf_osmo-trx.patch ├── docker-compose.yml ├── osmo-all.sh └── runme.sh ├── redirect_4_2g ├── Dockerfile ├── configs │ ├── libresdr_b220.bin │ └── operator ├── docker-compose.yml └── test.sh ├── route ├── run.sh ├── run_menu ├── scripts ├── 2G.sh ├── asterisk.sh ├── asterisk.sh.save ├── check_hw.sh ├── operator ├── redir.sh ├── telnet_bouygues.py ├── telnet_free.py ├── telnet_orange.py ├── telnet_sfr.py └── telnet_test.py └── srsran_performance /.config.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/.config.old -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/README.md -------------------------------------------------------------------------------- /asterisk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/asterisk.sh -------------------------------------------------------------------------------- /asterisk/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/asterisk/Dockerfile -------------------------------------------------------------------------------- /asterisk/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/asterisk/docker-compose.yml -------------------------------------------------------------------------------- /asterisk/extensions.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/asterisk/extensions.conf -------------------------------------------------------------------------------- /asterisk/modules.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/asterisk/modules.conf -------------------------------------------------------------------------------- /asterisk/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/asterisk/run.sh -------------------------------------------------------------------------------- /asterisk/sip.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/asterisk/sip.conf -------------------------------------------------------------------------------- /choose_interface.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/choose_interface.sh -------------------------------------------------------------------------------- /dns_forward.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/dns_forward.sh -------------------------------------------------------------------------------- /init_pyenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/init_pyenv.sh -------------------------------------------------------------------------------- /ipdev: -------------------------------------------------------------------------------- 1 | 192.168.1.23 2 | -------------------------------------------------------------------------------- /openlte.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/openlte.sh -------------------------------------------------------------------------------- /openlte_redir_install/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/openlte_redir_install/Dockerfile -------------------------------------------------------------------------------- /openlte_redir_install/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/openlte_redir_install/docker-compose.yml -------------------------------------------------------------------------------- /openlte_redir_install/uhd.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/openlte_redir_install/uhd.patch -------------------------------------------------------------------------------- /operator: -------------------------------------------------------------------------------- 1 | sfr 2 | -------------------------------------------------------------------------------- /osmo_egprs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/Dockerfile -------------------------------------------------------------------------------- /osmo_egprs/configs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/configs/README.md -------------------------------------------------------------------------------- /osmo_egprs/configs/apn0.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/configs/apn0.service -------------------------------------------------------------------------------- /osmo_egprs/configs/bladerf_osmo-trx.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/configs/bladerf_osmo-trx.patch -------------------------------------------------------------------------------- /osmo_egprs/configs/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/configs/entrypoint.sh -------------------------------------------------------------------------------- /osmo_egprs/configs/garbage_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/configs/garbage_1 -------------------------------------------------------------------------------- /osmo_egprs/configs/gsn_restart: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /osmo_egprs/configs/ipdev: -------------------------------------------------------------------------------- 1 | 192.168.1.60 2 | -------------------------------------------------------------------------------- /osmo_egprs/configs/libresdr_b210.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/configs/libresdr_b210.bin -------------------------------------------------------------------------------- /osmo_egprs/configs/nextip: -------------------------------------------------------------------------------- 1 | 192.168.1.61 2 | -------------------------------------------------------------------------------- /osmo_egprs/configs/old_route: -------------------------------------------------------------------------------- 1 | 192.168.255.188 2 | -------------------------------------------------------------------------------- /osmo_egprs/configs/operator: -------------------------------------------------------------------------------- 1 | free 2 | -------------------------------------------------------------------------------- /osmo_egprs/configs/osmo-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/configs/osmo-all.sh -------------------------------------------------------------------------------- /osmo_egprs/configs/osmo-bsc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/configs/osmo-bsc.cfg -------------------------------------------------------------------------------- /osmo_egprs/configs/osmo-bts.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/configs/osmo-bts.cfg -------------------------------------------------------------------------------- /osmo_egprs/configs/osmo-bts.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/configs/osmo-bts.service -------------------------------------------------------------------------------- /osmo_egprs/configs/osmo-ggsn.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/configs/osmo-ggsn.cfg -------------------------------------------------------------------------------- /osmo_egprs/configs/osmo-ggsn.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/configs/osmo-ggsn.service -------------------------------------------------------------------------------- /osmo_egprs/configs/osmo-hlr.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/configs/osmo-hlr.cfg -------------------------------------------------------------------------------- /osmo_egprs/configs/osmo-mgw.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/configs/osmo-mgw.cfg -------------------------------------------------------------------------------- /osmo_egprs/configs/osmo-mgw.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/configs/osmo-mgw.service -------------------------------------------------------------------------------- /osmo_egprs/configs/osmo-msc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/configs/osmo-msc.cfg -------------------------------------------------------------------------------- /osmo_egprs/configs/osmo-pcu.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/configs/osmo-pcu.cfg -------------------------------------------------------------------------------- /osmo_egprs/configs/osmo-pcu.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/configs/osmo-pcu.service -------------------------------------------------------------------------------- /osmo_egprs/configs/osmo-sgsn.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/configs/osmo-sgsn.cfg -------------------------------------------------------------------------------- /osmo_egprs/configs/osmo-sgsn_custom-sccp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/configs/osmo-sgsn_custom-sccp.cfg -------------------------------------------------------------------------------- /osmo_egprs/configs/osmo-sip-connector.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/configs/osmo-sip-connector.cfg -------------------------------------------------------------------------------- /osmo_egprs/configs/osmo-stp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/configs/osmo-stp.cfg -------------------------------------------------------------------------------- /osmo_egprs/configs/osmo-trx.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/configs/osmo-trx.cfg -------------------------------------------------------------------------------- /osmo_egprs/configs/osmo-trx.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/configs/osmo-trx.service -------------------------------------------------------------------------------- /osmo_egprs/configs/osmo-upf.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/configs/osmo-upf.cfg -------------------------------------------------------------------------------- /osmo_egprs/configs/osmo_bsc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/configs/osmo_bsc.cfg -------------------------------------------------------------------------------- /osmo_egprs/configs/osmo_interface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/configs/osmo_interface -------------------------------------------------------------------------------- /osmo_egprs/configs/route: -------------------------------------------------------------------------------- 1 | 192.168.1.254 2 | -------------------------------------------------------------------------------- /osmo_egprs/configs/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/configs/run.sh -------------------------------------------------------------------------------- /osmo_egprs/configs/runonce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/configs/runonce.sh -------------------------------------------------------------------------------- /osmo_egprs/configs/sms.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/configs/sms.db -------------------------------------------------------------------------------- /osmo_egprs/configs/test.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/configs/test.patch -------------------------------------------------------------------------------- /osmo_egprs/configs/tun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/configs/tun.sh -------------------------------------------------------------------------------- /osmo_egprs/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/docker-compose.yml -------------------------------------------------------------------------------- /osmo_egprs/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/entrypoint.sh -------------------------------------------------------------------------------- /osmo_egprs/libresdr_b210.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/libresdr_b210.bin -------------------------------------------------------------------------------- /osmo_egprs/operator: -------------------------------------------------------------------------------- 1 | free 2 | -------------------------------------------------------------------------------- /osmo_egprs/osmo-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/osmo-all.sh -------------------------------------------------------------------------------- /osmo_egprs/osmo-bsc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/osmo-bsc.cfg -------------------------------------------------------------------------------- /osmo_egprs/osmo-bts.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/osmo-bts.cfg -------------------------------------------------------------------------------- /osmo_egprs/osmo-ggsn.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/osmo-ggsn.cfg -------------------------------------------------------------------------------- /osmo_egprs/osmo-hlr.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/osmo-hlr.cfg -------------------------------------------------------------------------------- /osmo_egprs/osmo-mgw.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/osmo-mgw.cfg -------------------------------------------------------------------------------- /osmo_egprs/osmo-msc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/osmo-msc.cfg -------------------------------------------------------------------------------- /osmo_egprs/osmo-pcu.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/osmo-pcu.cfg -------------------------------------------------------------------------------- /osmo_egprs/osmo-sgsn.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/osmo-sgsn.cfg -------------------------------------------------------------------------------- /osmo_egprs/osmo-sgsn_custom-sccp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/osmo-sgsn_custom-sccp.cfg -------------------------------------------------------------------------------- /osmo_egprs/osmo-sip-connector.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/osmo-sip-connector.cfg -------------------------------------------------------------------------------- /osmo_egprs/osmo-stp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/osmo-stp.cfg -------------------------------------------------------------------------------- /osmo_egprs/osmo-trx.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/osmo-trx.cfg -------------------------------------------------------------------------------- /osmo_egprs/osmo-upf.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/osmo-upf.cfg -------------------------------------------------------------------------------- /osmo_egprs/osmo_bsc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/osmo_bsc.cfg -------------------------------------------------------------------------------- /osmo_egprs/route: -------------------------------------------------------------------------------- 1 | 192.168.1.254 2 | -------------------------------------------------------------------------------- /osmo_egprs/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/run.sh -------------------------------------------------------------------------------- /osmo_egprs/runonce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/runonce.sh -------------------------------------------------------------------------------- /osmo_egprs/scripts/.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/scripts/.config -------------------------------------------------------------------------------- /osmo_egprs/scripts/.config.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/scripts/.config.old -------------------------------------------------------------------------------- /osmo_egprs/scripts/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/scripts/entrypoint.sh -------------------------------------------------------------------------------- /osmo_egprs/scripts/osmo-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/scripts/osmo-all.sh -------------------------------------------------------------------------------- /osmo_egprs/scripts/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/scripts/run.sh -------------------------------------------------------------------------------- /osmo_egprs/scripts/runonce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/scripts/runonce.sh -------------------------------------------------------------------------------- /osmo_egprs/scripts/tun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/scripts/tun.sh -------------------------------------------------------------------------------- /osmo_egprs/tun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/tun.sh -------------------------------------------------------------------------------- /osmo_egprs/uhd-usrp.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmo_egprs/uhd-usrp.rules -------------------------------------------------------------------------------- /osmocom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmocom.sh -------------------------------------------------------------------------------- /osmocom_installation/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmocom_installation/Dockerfile -------------------------------------------------------------------------------- /osmocom_installation/bladerf_osmo-trx.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmocom_installation/bladerf_osmo-trx.patch -------------------------------------------------------------------------------- /osmocom_installation/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmocom_installation/docker-compose.yml -------------------------------------------------------------------------------- /osmocom_installation/osmo-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmocom_installation/osmo-all.sh -------------------------------------------------------------------------------- /osmocom_installation/runme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/osmocom_installation/runme.sh -------------------------------------------------------------------------------- /redirect_4_2g/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/redirect_4_2g/Dockerfile -------------------------------------------------------------------------------- /redirect_4_2g/configs/libresdr_b220.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/redirect_4_2g/configs/libresdr_b220.bin -------------------------------------------------------------------------------- /redirect_4_2g/configs/operator: -------------------------------------------------------------------------------- 1 | orange 2 | -------------------------------------------------------------------------------- /redirect_4_2g/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/redirect_4_2g/docker-compose.yml -------------------------------------------------------------------------------- /redirect_4_2g/test.sh: -------------------------------------------------------------------------------- 1 | export UHD_MODULES_PATH=/usr/lib/uhd/modules && LTE_fdd_enodeb 2 | -------------------------------------------------------------------------------- /route: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/route -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/run.sh -------------------------------------------------------------------------------- /run_menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/run_menu -------------------------------------------------------------------------------- /scripts/2G.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/scripts/2G.sh -------------------------------------------------------------------------------- /scripts/asterisk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/scripts/asterisk.sh -------------------------------------------------------------------------------- /scripts/asterisk.sh.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/scripts/asterisk.sh.save -------------------------------------------------------------------------------- /scripts/check_hw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/scripts/check_hw.sh -------------------------------------------------------------------------------- /scripts/operator: -------------------------------------------------------------------------------- 1 | free 2 | -------------------------------------------------------------------------------- /scripts/redir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/scripts/redir.sh -------------------------------------------------------------------------------- /scripts/telnet_bouygues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/scripts/telnet_bouygues.py -------------------------------------------------------------------------------- /scripts/telnet_free.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/scripts/telnet_free.py -------------------------------------------------------------------------------- /scripts/telnet_orange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/scripts/telnet_orange.py -------------------------------------------------------------------------------- /scripts/telnet_sfr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/scripts/telnet_sfr.py -------------------------------------------------------------------------------- /scripts/telnet_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/scripts/telnet_test.py -------------------------------------------------------------------------------- /srsran_performance: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbaranoff/LTE-Redirection_Attack/HEAD/srsran_performance --------------------------------------------------------------------------------