DragonOS 10/LTS Track LTE cells (LTE-Cell-Scanner)

Sdílet
Vložit
  • čas přidán 11. 09. 2024

Komentáře • 37

  • @tmanF4
    @tmanF4 Před 4 lety +4

    Thank you for making this. It feels so nice to have a bootable, current, Sig-int focused Linux image! All my troubles getting this configured have gone out the window thanks to you.

    • @cemaxecuter7783
      @cemaxecuter7783  Před 4 lety

      RegalTenK no problem at all. Glad it’s working well for you! When I get a chance I want to do another video on cellular. For this video, I didn’t even realize i skipped showing that if you click on the tracked cell ids you get yet more info.

  • @libyantornado
    @libyantornado Před rokem +2

    I really appreciate your valuable efforts, you're the best OTW

  • @avilv3
    @avilv3 Před 4 lety +1

    Hi
    There is a chance to using Wireshark after we tracking the cell?
    BR
    Aviran

    • @cemaxecuter7783
      @cemaxecuter7783  Před 4 lety

      I don’t think so, at least not with this. I’ve came across a project that looks to be some sort of LTE sniffing tool, so maybe that’s an option. Haven’t got around to trying it yet.

  • @michaelmutekeri8770
    @michaelmutekeri8770 Před 3 lety +2

    Hi, can you also show on how to configure the bladeRF xa4

    • @cemaxecuter7783
      @cemaxecuter7783  Před 3 lety

      Sure! That should be possible with v2 of the cell scanner. It’s not preinstalled in DragonOS but compiled for the rtlsdr. I’ll show how to recompile for the hackrf and bladerf.

    • @cemaxecuter7783
      @cemaxecuter7783  Před 3 lety

      Srslte also has some tools to do similar things. Works a little differently I think but serves the same purpose.

    • @michaelmutekeri8770
      @michaelmutekeri8770 Před 3 lety

      @@cemaxecuter7783 thanx mate...I tried to downloaded and compile..it was giving error on the make file..so I guess I am missing something...it will be very helpful..I also moved to DragonOS_Focal_PublicR4, thinking it would make a difference..

    • @michaelmutekeri8770
      @michaelmutekeri8770 Před 3 lety

      @@cemaxecuter7783
      I tried to use the v2 as you indicated, creating another folder for build which I called build_1...it get stuck as below
      ......:/usr/src/LTE-Cell-Scanner-v2/build_1$ sudo cmake ../ -DUSE_BLADERF=1
      -- The C compiler identification is GNU 9.3.0
      -- The CXX compiler identification is GNU 9.3.0
      -- Check for working C compiler: /usr/bin/cc
      -- Check for working C compiler: /usr/bin/cc -- works
      -- Detecting C compiler ABI info
      -- Detecting C compiler ABI info - done
      -- Detecting C compile features
      -- Detecting C compile features - done
      -- Check for working CXX compiler: /usr/bin/c++
      -- Check for working CXX compiler: /usr/bin/c++ -- works
      -- Detecting CXX compiler ABI info
      -- Detecting CXX compiler ABI info - done
      -- Detecting CXX compile features
      -- Detecting CXX compile features - done
      -- Try to find OPENCL LIB
      -- OpenCL LIB not found
      -- Found OpenMP_C: -fopenmp (found version "4.5")
      -- Found OpenMP_CXX: -fopenmp (found version "4.5")
      -- Found OpenMP: TRUE (found version "4.5")
      -- Looking for include file pthread.h
      -- Looking for include file pthread.h - found
      -- Looking for pthread_create in pthreads
      -- Looking for pthread_create in pthreads - not found
      -- Looking for pthread_create in pthread
      -- Looking for pthread_create in pthread - found
      -- Found Boost: /usr/lib/x86_64-linux-gnu/cmake/Boost-1.71.0/BoostConfig.cmake (found version "1.71.0") found components: thread system
      -- Found ITPP: /usr/lib/x86_64-linux-gnu/libitpp.so
      -- Looking for sgemm_
      -- Looking for sgemm_ - not found
      -- Performing Test CMAKE_HAVE_LIBC_PTHREAD
      -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success
      -- Found Threads: TRUE
      -- Looking for sgemm_
      -- Looking for sgemm_ - found
      -- Found BLAS: /usr/lib/x86_64-linux-gnu/libopenblas.so
      -- Looking for cheev_
      -- Looking for cheev_ - found
      -- A library with LAPACK API found.
      -- Found FFTW: /usr/lib/x86_64-linux-gnu/libfftw3.so
      -- Try to find BLADERF LIB
      -- Found BLADERF LIB: /usr/lib/x86_64-linux-gnu/libbladeRF.so
      -- Found Curses: /usr/lib/x86_64-linux-gnu/libcurses.so
      -- Configuring done
      -- Generating done
      -- Build files have been written to: /usr/src/LTE-Cell-Scanner-v2/build_1
      .............:/usr/src/LTE-Cell-Scanner-v2/build_1$ sudo make
      Scanning dependencies of target LTE_MISC
      [ 5%] Building CXX object src/CMakeFiles/LTE_MISC.dir/capbuf.cpp.o
      In file included from /usr/src/LTE-Cell-Scanner-v2/include/capbuf.h:39,
      from /usr/src/LTE-Cell-Scanner-v2/src/capbuf.cpp:25:
      /usr/src/LTE-Cell-Scanner-v2/src/capbuf.cpp: In function ‘int open_bladerf_board(bladerf_device*&, unsigned int, unsigned int)’:
      /usr/src/LTE-Cell-Scanner-v2/src/capbuf.cpp:90:45: error: invalid conversion from ‘bladerf_channel’ {aka ‘int’} to ‘bladerf_channel_layout’ [-fpermissive]
      90 | status = bladerf_sync_config(bladerf_dev, BLADERF_MODULE_RX, BLADERF_FORMAT_SC16_Q11, 2, buffer_size, 1, 3500);
      | ^~~~~~~~~~~~~~~~~
      | |
      | bladerf_channel {aka int}
      /usr/include/libbladeRF.h:2578:58: note: initializing argument 2 of ‘int bladerf_sync_config(bladerf*, bladerf_channel_layout, bladerf_format, unsigned int, unsigned int, unsigned int, unsigned int)’
      2578 | bladerf_channel_layout layout,
      | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~
      make[2]: *** [src/CMakeFiles/LTE_MISC.dir/build.make:63: src/CMakeFiles/LTE_MISC.dir/capbuf.cpp.o] Error 1
      make[1]: *** [CMakeFiles/Makefile2:201: src/CMakeFiles/LTE_MISC.dir/all] Error 2
      make: *** [Makefile:141: all] Error 2
      ........:/usr/src/LTE-Cell-Scanner-v2/build_1$

    • @cemaxecuter7783
      @cemaxecuter7783  Před 3 lety

      You’re right. I just tried it myself. I had only ever rebuilt it for the rtlsdr and the hackrf. This is disappointing. I’ll look and see if there’s any solutions, I’m assuming things have changed with whatever bladerf files it’s looking at.

  • @pashtoonlinezdakra9595
    @pashtoonlinezdakra9595 Před rokem +1

    Hello sir
    This track need for device but I don't have rtl sdr I from Afghanistan

  • @ryiadhal-areibi7600
    @ryiadhal-areibi7600 Před 3 lety +1

    can i run This on Matlap on windows? and Can you tell If I need Step To confg My rtl sdr To Make Matlap red it !?

    • @cemaxecuter7783
      @cemaxecuter7783  Před 3 lety

      Sorry I’m not too familiar with Marlan. The easier solution if you want to stick with windows is to run DragonOS in VMware and pass over your rtlsdr to the Vm.

    • @ryiadhal-areibi7600
      @ryiadhal-areibi7600 Před 3 lety +1

      ok sire If I Install DragonOS And Flow The steps That You Show on your video Should Work Fine !?

    • @cemaxecuter7783
      @cemaxecuter7783  Před 3 lety

      It depends. I actually should do another video on this tool. If you download and use DragonOS LTS then yes these exact steps will work. If you install the newer DragonOS Focal it has a slightly different version of this tool installed.
      This video shows the newer version of the tool.
      czcams.com/video/NpmoDhDAqQI/video.html
      To make it more confusing, sorry, the tool is already installed and setup for the rtlsdr. So the video is showing me making it work with the hackrf, but for you it’ll already be installed cans setup for the rtlsdr.
      Either way, no matter what version of DragonOS you install you’ll be able to get it to work.

  • @kinetic-pubgmobile9149
    @kinetic-pubgmobile9149 Před 4 lety +1

    I am Getting Issue in Kali linux with Lte Scanner

    • @cemaxecuter7783
      @cemaxecuter7783  Před 4 lety

      KINETIC - PUBG MOBILE I didn’t know they had it in Kali. It’s the same tool or did you install this one?

  • @daniyalshahzad2822
    @daniyalshahzad2822 Před 4 lety +1

    Can i use it with hack rf one

    • @cemaxecuter7783
      @cemaxecuter7783  Před 4 lety

      Daniyal Shahzad actually there is a fork of the LTE scanner that works with the hackrf one. The version that’s preinstalled and shown in the video only works with the rtl-SDR.

    • @cemaxecuter7783
      @cemaxecuter7783  Před 4 lety

      Daniyal Shahzad github.com/JiaoXianjun/LTE-Cell-Scanner

    • @daniyalshahzad2822
      @daniyalshahzad2822 Před 4 lety +1

      @@cemaxecuter7783 thank you can i get your personal email address for further questions i need some help in school projects

    • @cemaxecuter7783
      @cemaxecuter7783  Před 4 lety +1

      Daniyal Shahzad let me know if you got it , if not I’ll post it again

    • @daniyalshahzad2822
      @daniyalshahzad2822 Před 4 lety

      @@cemaxecuter7783 okay thank you very much