zoukankan      html  css  js  c++  java
  • 访问类的private或internal成员[转载]

    ... that access modifiers like public, private and internal are enforced by the language compilers (C#, VB.NET) only and not on IL level?

    That means that you can invoke any private or internal member in any class, residing in any assembly, just by using Reflection.

    To invoke a private static method Calc from the internal class Calculations in the AssemblyWithPrivateMembers assembly that requires two parameters of type int and returns an int, you can write the following few lines of code.

      Assembly asm = Assembly.Load("AssemblyWithPrivateMembers");

      Type t = asm.GetType("AssemblyWithPrivateMembers.Calculations");

      object[] args = new object[] { 2, 4 };

      BindingFlags bindingFlags = BindingFlags.DeclaredOnly | BindingFlags.Static | BindingFlags.NonPublic | BindingFlags.InvokeMethod;

      int result = (int)(t.InvokeMember("Calc", bindingFlags, null, null, args));

    For you as a developer it means that you can use all non-public members you find by browsing the .NET framework base class library (using .NET Reflector for example).

    But: Please use this possibility with caution! There will always be a reason why a class or member is not declared public. Additionally you are never sure if the class or member will change in later versions of the assembly.
    Form:http://dotnetjunkies.com/WebLog/nenoloje/archive/2004/03/19/9490.aspx

  • 相关阅读:
    windows本地提权——2003笔记
    Windows与linux添加用户命令
    反弹shell集锦
    提权-特权升级
    常见端口
    git泄露利用脚本
    Thinkphp5命令执行利用
    Thinkphp2.1漏洞利用
    打ms15-034补丁出现“此更新 不适用于您的计算机”
    Hyda爆破
  • 原文地址:https://www.cnblogs.com/dudu/p/4012.html
Copyright © 2011-2022 走看看