Enter the machine using adb shell
Run cat /proc/partitions
# Path Purpose Size
0 /dev/block/mmcblk0 7761920
1 /dev/block/mmcblk0p1 data 6085631
| Serial Keys: | |
| FU512-2DG1H-M85QZ-U7Z5T-PY8ZD | |
| CU3MA-2LG1N-48EGQ-9GNGZ-QG0UD | |
| GV7N2-DQZ00-4897Y-27ZNX-NV0TD | |
| YZ718-4REEQ-08DHQ-JNYQC-ZQRD0 | |
| GZ3N0-6CX0L-H80UP-FPM59-NKAD4 | |
| YY31H-6EYEJ-480VZ-VXXZC-QF2E0 | |
| ZG51K-25FE1-H81ZP-95XGT-WV2C0 | |
| VG30H-2AX11-H88FQ-CQXGZ-M6AY4 |
| #!/bin/bash | |
| ###################################################### | |
| ### README ########################################### | |
| ###################################################### | |
| ### | |
| ### One-line server install script for Ubuntu. | |
| ### Installs Nginx + PHP7.1 + MongoDB for PHP driver. | |
| ### | |
| ### Removes previous Apache, PHP, nginx installations. |
| import { NgModule } from '@angular/core'; | |
| import { CommonModule } from '@angular/common'; | |
| import { JWT_OPTIONS, JwtInterceptor, JwtModule } from '@auth0/angular-jwt'; | |
| import { AuthorizationService } from './authorization.service'; | |
| import { environment } from '../../environments/environment'; | |
| import { HTTP_INTERCEPTORS, HttpClientModule } from '@angular/common/http'; | |
| import { RefreshTokenInterceptor } from './refresh-token-interceptor'; | |
| function jwtOptionsFactory (authorizationService: AuthorizationService) { | |
| return { |
| import { BrowserModule } from '@angular/platform-browser'; | |
| import { NgModule } from '@angular/core'; | |
| import { AppComponent } from './app.component'; | |
| //Angular Material Components | |
| import {BrowserAnimationsModule} from '@angular/platform-browser/animations'; | |
| import {MatCheckboxModule} from '@angular/material'; | |
| import {MatButtonModule} from '@angular/material'; |
I work as a full-stack developer at work. We are a Windows & Azure shop, so we are using Windows as our development platform, hence this customization.
For my console needs, I am using Cmder which is based on ConEmu with PowerShell as my shell of choice.
Yes, yes, I know nowadays you can use the Linux subsystem on Windows 10 which allow you to run Ubuntu on Windows. If you are looking for customization of the Ubuntu bash shell, check out this article by Scott Hanselman.
| #!/bin/bash | |
| #curl https://gist.githubusercontent.com/katakumby/466f3ae800609abcdaede60bc2e26c0f/raw/f95a24a53a9d87f01551ef7c03c535e2c6ce173c/installer.sh | bash | |
| #This script will automatically install basic pentesting software like kali linux tools, wpscan, metasploit etc. | |
| sudo apt-get update | |
| sudo apt-get upgrade -y | |
| sudo apt-get dist-upgrade -y |
| QApplication, | |
| QMainWindow, QFrame, QDockWidget, QDialog, QFileDialog, QMessageBox{ | |
| background: white; | |
| border: none; | |
| color: #212121; | |
| } | |
| QToolBar { | |
| background: #0097A7; |
| cmake_minimum_required(VERSION 3.0) | |
| set(CMAKE_BUILD_TYPE Release) | |
| project(Application) | |
| find_package(CURL REQUIRED) | |
| include_directories(Application ${CURL_INCLUDE_DIRS}) | |
| add_executable(Application main.cpp) | |
| target_link_libraries(Application ${CURL_LIBRARIES}) |