Giter VIP home page Giter VIP logo

Comments (3)

firmianay avatar firmianay commented on August 23, 2024

污点不能传播的其他例子,我想从uri->commit.@this

从uri->input可以,从input->output不可以,从output->commit.@this可以

  fun installApk(uri: Uri) {
      val packageInstaller: PackageInstaller = packageManager.packageInstaller
      val params = PackageInstaller.SessionParams(PackageInstaller.SessionParams.MODE_FULL_INSTALL)
      val sessionId = packageInstaller.createSession(params)
      val session = packageInstaller.openSession(sessionId)

      val input: InputStream = contentResolver.openInputStream(uri)!!
      val output: OutputStream = session.openWrite("my_app", 0, -1)
      input.copyTo(output)

      session.fsync(output)
      input.close()
      output.close()

      val intent = Intent("action.demo")
      val pendingIntent = PendingIntent.getBroadcast(this, 0, intent, 0)
      session.commit(pendingIntent.intentSender)
  }

哦这个我在EngineConfig加上,可以解决:

      "<kotlin.io.ByteStreamsKt: long copyTo$default(java.io.InputStream,java.io.OutputStream,int,int,java.lang.Object)>": {
        "p0->p1": {
          "I": ["p0"],
          "O": ["p1"]
        }
      }

from appshark.

nkbai avatar nkbai commented on August 23, 2024

对于系统库函数,默认的传播规则是所有参数传播给返回值,传播给this指针。

from appshark.

firmianay avatar firmianay commented on August 23, 2024

gson.fromJson这个问题还没有解决

from appshark.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.