Android-IMSI-Catcher-Detector icon indicating copy to clipboard operation
Android-IMSI-Catcher-Detector copied to clipboard

Possible bug?

Open Ketan-Desai opened this issue 7 years ago • 0 comments

Incase of LTE only case...

In DeviceApi18.loadCellInfo() function, there is check for valid cell like this...

                if (pDevice.cell.isValid()) {
                    break;
                }

But incase of CellInfoLte, there is no call to cell.setLocationAreaCode() (to set LAC)

and cell.isValid() function is like...

public boolean isValid() {
    return this.getCellId() != Integer.MAX_VALUE && this.getLocationAreaCode() != nteger.MAX_VALUE;
}

So Tac need to be retrived and set as LAC

Thanks

Agreements

  • [x] I have reviewed and accepted the guidelines for contributing to this project.
  • [x] I have searched the open Issues and made sure I am not filing a duplicate.
  • [x] I have read the notes on debugging and will properly maintain this Issue.

Overview

  • AIMSICD version (see the About screen):
  • Phone and ROM running current release:
  • Link to logfile without identifyable data:

Reproduction

References

Screenshots

Ketan-Desai avatar Nov 04 '18 07:11 Ketan-Desai