()
| 1067 | |
| 1068 | @staticmethod |
| 1069 | def GetASLR(): |
| 1070 | try: |
| 1071 | with open('/proc/sys/kernel/randomize_va_space', 'r') as f: |
| 1072 | return int(f.readline().strip()) |
| 1073 | except Exception: |
| 1074 | logging.exception('Failed to get current ASLR settings.') |
| 1075 | raise |
| 1076 | |
| 1077 | @staticmethod |
| 1078 | def SetASLR(value): |