With kerbrute.py:
python kerbrute.py -domain <domain_name> -users <users_file> -passwords <passwords_file> -outputfile <output_file>With Rubeus version with brute module:
With kerbrute.py:
python kerbrute.py -domain <domain_name> -users <users_file> -passwords <passwords_file> -outputfile <output_file>With Rubeus version with brute module:
| Windows Registry Editor Version 5.00 | |
| [HKEY_CURRENT_USER\Software\Classes\Scripting.FileSystemObject] | |
| @="" | |
| [HKEY_CURRENT_USER\Software\Classes\Scripting.FileSystemObject\CLSID] | |
| @="{00000001-0000-0000-0000-0000FEEDACDC}" | |
| # -- coding: utf-8 -- | |
| from win32api import * | |
| from win32gui import * | |
| import win32con | |
| import sys, os | |
| import struct | |
| import time | |
| class WindowsBalloonTip: |
| public abstract class FirebaseRecyclerAdapter<T, VH extends RecyclerView.ViewHolder> extends RecyclerView.Adapter<VH > implements Filterable { | |
| private static final String LOG_TAG = FirebaseRecyclerAdapter.class.getSimpleName(); | |
| private Query mRef; | |
| private Class<T> mModelClass; | |
| private int mLayout; | |
| private LayoutInflater mInflater; | |
| protected Class<VH> mViewHolderClass; | |
| private List<T> mModels; | |
| private List<T> mFilteredModels; |
| <service | |
| android:name="xxx.xxx.Firebase.MyFirebaseMessagingService"> | |
| <intent-filter> | |
| <action android:name="com.google.firebase.MESSAGING_EVENT"/> | |
| </intent-filter> | |
| </service> | |
| <activity | |
| android:name="com.google.android.gms.tagmanager.PreviewActivity" | |
| android:label="@string/app_name" |
| <?xml version="1.0" encoding="utf-8"?> | |
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
| package="com.example.bgfirebaseapp" | |
| android:versionCode="1" | |
| android:versionName="1.0" > | |
| <uses-sdk | |
| android:minSdkVersion="16" | |
| android:targetSdkVersion="17" /> |
| <?php | |
| // Server file | |
| class PushNotifications { | |
| // (Android)API access key from Google API's Console. | |
| private static $API_ACCESS_KEY = 'AIzaSyDG3fYAj1uW7VB-wejaMJyJXiO5JagAsYI'; | |
| // (iOS) Private key's passphrase. | |
| private static $passphrase = 'joashp'; | |
| // (Windows Phone 8) The name of our push channel. | |
| private static $channelName = "joashp"; |
| # -- coding: utf-8 -- | |
| from win32api import * | |
| from win32gui import * | |
| import win32con | |
| import sys, os | |
| import struct | |
| import time | |
| class WindowsBalloonTip: |